diff options
| author | Pavel Janík | 2002-04-25 12:15:14 +0000 |
|---|---|---|
| committer | Pavel Janík | 2002-04-25 12:15:14 +0000 |
| commit | 6f4426332dab4a0bd2c587d4877db45817062b9f (patch) | |
| tree | bd693128bdffee003b74d5e5ae9ab341b32c0a20 /src | |
| parent | 3a46a5dec0ae7dc2145edfced2095ca5861cc05f (diff) | |
| download | emacs-6f4426332dab4a0bd2c587d4877db45817062b9f.tar.gz emacs-6f4426332dab4a0bd2c587d4877db45817062b9f.zip | |
(Fvertical_motion): Fix last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/indent.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f0549637b6f..5a7dc54a669 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-04-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | ||
| 2 | |||
| 3 | * indent.c (Fvertical_motion): Fix last change. | ||
| 4 | |||
| 1 | 2002-04-25 Gerd Moellmann <gerd@gnu.org> | 5 | 2002-04-25 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * indent.c (Fvertical_motion): Move to the start of the line | 7 | * indent.c (Fvertical_motion): Move to the start of the line |
diff --git a/src/indent.c b/src/indent.c index e2f68076075..e6f6c31a277 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -2026,7 +2026,7 @@ whether or not it is currently displayed in some window. */) | |||
| 2026 | end position is really at some X > 0, the same X that PT had. */ | 2026 | end position is really at some X > 0, the same X that PT had. */ |
| 2027 | move_it_by_lines (&it, 0, 0); | 2027 | move_it_by_lines (&it, 0, 0); |
| 2028 | 2028 | ||
| 2029 | if (XINT (lines) !+ 0) | 2029 | if (XINT (lines) != 0) |
| 2030 | move_it_by_lines (&it, XINT (lines), 0); | 2030 | move_it_by_lines (&it, XINT (lines), 0); |
| 2031 | 2031 | ||
| 2032 | SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it)); | 2032 | SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it)); |