changeset 56594:5b9242222549

(compute_motion): Fix last change.
author Kim F. Storm <storm@cua.dk>
date Mon, 02 Aug 2004 23:59:28 +0000
parents 47fd67a37101
children 40a0843be50a
files src/indent.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/indent.c	Mon Aug 02 23:42:14 2004 +0000
+++ b/src/indent.c	Mon Aug 02 23:59:28 2004 +0000
@@ -1260,10 +1260,10 @@
 	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;