diff options
| author | Richard M. Stallman | 1994-07-14 03:46:11 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-07-14 03:46:11 +0000 |
| commit | a9c95e08a1a1f8c6b2e8a42808c4bdfceeb03aa7 (patch) | |
| tree | 42b3259ad979ef9252948afcc0b2a8704b9dc226 /src | |
| parent | b6dd20ed5af6531da176dc617936ce6912c0d00a (diff) | |
| download | emacs-a9c95e08a1a1f8c6b2e8a42808c4bdfceeb03aa7.tar.gz emacs-a9c95e08a1a1f8c6b2e8a42808c4bdfceeb03aa7.zip | |
(Fselect_window): Fix bug checking new_point is in range.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index 1a4a3027922..37266261c74 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -1729,7 +1729,7 @@ before each command.") | |||
| 1729 | register int new_point = marker_position (w->pointm); | 1729 | register int new_point = marker_position (w->pointm); |
| 1730 | if (new_point < BEGV) | 1730 | if (new_point < BEGV) |
| 1731 | SET_PT (BEGV); | 1731 | SET_PT (BEGV); |
| 1732 | if (new_point > ZV) | 1732 | else if (new_point > ZV) |
| 1733 | SET_PT (ZV); | 1733 | SET_PT (ZV); |
| 1734 | else | 1734 | else |
| 1735 | SET_PT (new_point); | 1735 | SET_PT (new_point); |