]> git.eshelyaron.com Git - emacs.git/commitdiff
(compute_motion): Fix last change.
authorKim F. Storm <storm@cua.dk>
Mon, 2 Aug 2004 23:59:28 +0000 (23:59 +0000)
committerKim F. Storm <storm@cua.dk>
Mon, 2 Aug 2004 23:59:28 +0000 (23:59 +0000)
src/indent.c

index 63f1ed3193023c2b2bc59b5f7dbc30e2814f7474..de76464564e9a6494626742a285ec513af962b7b 100644 (file)
@@ -1260,10 +1260,10 @@ compute_motion (from, fromvpos, fromhpos, did_motion, to, tovpos, tohpos, width,
        width -= 1;
     }
 
-  continuation_glyph_width = 0;
+  continuation_glyph_width = 1;
 #ifdef HAVE_WINDOW_SYSTEM
-  if (!FRAME_WINDOW_P (XFRAME (win->frame)))
-    continuation_glyph_width = 1;
+  if (FRAME_WINDOW_P (XFRAME (win->frame)))
+    continuation_glyph_width = 0;  /* In the fringe.  */
 #endif
 
   immediate_quit = 1;