emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 59e3f2d: * src/indent.c (Fvertical_motion): Simplif


From: Paul Eggert
Subject: [Emacs-diffs] master 59e3f2d: * src/indent.c (Fvertical_motion): Simplify bugfix (Bug#21468).
Date: Sun, 13 Sep 2015 16:13:59 +0000

branch: master
commit 59e3f2df9314e160b37bb1375b4bad15976cd56f
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    * src/indent.c (Fvertical_motion): Simplify bugfix (Bug#21468).
---
 src/indent.c |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/src/indent.c b/src/indent.c
index 777cd36..ded1843 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -2203,10 +2203,7 @@ whether or not it is currently displayed in some window. 
 */)
             and then reposition point at the requested X coordinate;
             if we don't, the cursor will be placed just after the
             string, which might not be the requested column.  */
-         if (nlines > 0
-             && it.method == GET_FROM_STRING
-             && !it.string_from_display_prop_p
-             && it.area == TEXT_AREA)
+         if (nlines > 0 && it.area == TEXT_AREA)
            {
              while (it.method == GET_FROM_STRING
                     && !it.string_from_display_prop_p



reply via email to

[Prev in Thread] Current Thread [Next in Thread]