diff options
| author | Kim F. Storm | 2004-08-02 23:59:28 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-08-02 23:59:28 +0000 |
| commit | 8cc08515f406edb4f485c8bdad003be05d48a665 (patch) | |
| tree | 49971b5b807bf9aa5af38b5385f5f6f8746d42dc /src | |
| parent | ed5c373cab5483317a8b6fca3d8d4d52432934fc (diff) | |
| download | emacs-8cc08515f406edb4f485c8bdad003be05d48a665.tar.gz emacs-8cc08515f406edb4f485c8bdad003be05d48a665.zip | |
(compute_motion): Fix last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/indent.c b/src/indent.c index 63f1ed31930..de76464564e 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -1260,10 +1260,10 @@ compute_motion (from, fromvpos, fromhpos, did_motion, to, tovpos, tohpos, width, | |||
| 1260 | width -= 1; | 1260 | width -= 1; |
| 1261 | } | 1261 | } |
| 1262 | 1262 | ||
| 1263 | continuation_glyph_width = 0; | 1263 | continuation_glyph_width = 1; |
| 1264 | #ifdef HAVE_WINDOW_SYSTEM | 1264 | #ifdef HAVE_WINDOW_SYSTEM |
| 1265 | if (!FRAME_WINDOW_P (XFRAME (win->frame))) | 1265 | if (FRAME_WINDOW_P (XFRAME (win->frame))) |
| 1266 | continuation_glyph_width = 1; | 1266 | continuation_glyph_width = 0; /* In the fringe. */ |
| 1267 | #endif | 1267 | #endif |
| 1268 | 1268 | ||
| 1269 | immediate_quit = 1; | 1269 | immediate_quit = 1; |