aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-06 11:29:37 +0000
committerGerd Moellmann2000-12-06 11:29:37 +0000
commitefc8f57aba4f1ef559b03746f277f60922638d1c (patch)
tree0f2883f25a9d417a20550593490be5007ab60b26 /src
parent9765b4a48777b98a338c900fe64838f2a03679ef (diff)
downloademacs-efc8f57aba4f1ef559b03746f277f60922638d1c.tar.gz
emacs-efc8f57aba4f1ef559b03746f277f60922638d1c.zip
(move_it_by_lines): Fix paren typo.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/xdisp.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 38b12414b86..1d6b3cec057 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12000-12-06 Gerd Moellmann <gerd@gnu.org> 12000-12-06 Gerd Moellmann <gerd@gnu.org>
2 2
3 * xdisp.c (move_it_by_lines): Fix paren typo.
4
3 * xterm.c (x_load_font): Don't use the font's max_bounds for 5 * xterm.c (x_load_font): Don't use the font's max_bounds for
4 computing the height of the font. If max_bounds' ascent or 6 computing the height of the font. If max_bounds' ascent or
5 descent are greater than the font's ascent or descent, this means 7 descent are greater than the font's ascent or descent, this means
diff --git a/src/xdisp.c b/src/xdisp.c
index 41b234dbf9e..0e761ada607 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -5075,7 +5075,7 @@ move_it_by_lines (it, dvpos, need_y_p)
5075 { 5075 {
5076 int shortage = 0, charpos; 5076 int shortage = 0, charpos;
5077 5077
5078 if (FETCH_BYTE (IT_BYTEPOS (*it) == '\n')) 5078 if (FETCH_BYTE (IT_BYTEPOS (*it)) == '\n')
5079 charpos = IT_CHARPOS (*it) + 1; 5079 charpos = IT_CHARPOS (*it) + 1;
5080 else 5080 else
5081 charpos = scan_buffer ('\n', IT_CHARPOS (*it), 0, dvpos, 5081 charpos = scan_buffer ('\n', IT_CHARPOS (*it), 0, dvpos,