aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2007-12-02 16:31:05 +0000
committerAndreas Schwab2007-12-02 16:31:05 +0000
commitd8a96db85fda3481f4921a073f8ac3a714dc5fc1 (patch)
tree7ccbcf3ac551536efe990c293fdfb786b6bb4687
parent775267617af7fdcc75a703d877f6c5b7467a0cff (diff)
downloademacs-d8a96db85fda3481f4921a073f8ac3a714dc5fc1.tar.gz
emacs-d8a96db85fda3481f4921a073f8ac3a714dc5fc1.zip
(back_to_previous_visible_line_start): Fix type of beg
and end.
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 0470cbd2ff3..8ae136c9f75 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -5408,7 +5408,7 @@ back_to_previous_visible_line_start (it)
5408 { 5408 {
5409 struct it it2; 5409 struct it it2;
5410 int pos; 5410 int pos;
5411 int beg, end; 5411 EMACS_INT beg, end;
5412 Lisp_Object val, overlay; 5412 Lisp_Object val, overlay;
5413 5413
5414 /* If newline is part of a composition, continue from start of composition */ 5414 /* If newline is part of a composition, continue from start of composition */