aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2014-01-11 13:28:57 +0200
committerEli Zaretskii2014-01-11 13:28:57 +0200
commitdc604697f8f0402396167559a83e8af7db6652a4 (patch)
tree189faf94f3dc67d8e0ffd7e1bbfc21959bd4815d /src
parentf96d0a6b46f59514cab8671b9bfdf6c4b83c3efc (diff)
downloademacs-dc604697f8f0402396167559a83e8af7db6652a4.tar.gz
emacs-dc604697f8f0402396167559a83e8af7db6652a4.zip
src/xdisp.c (try_window_id): Update commentary.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index de553a71f97..99471d1df19 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -17333,9 +17333,16 @@ row_containing_pos (struct window *w, ptrdiff_t charpos,
17333 17333
17334 Value is 17334 Value is
17335 17335
17336 1 if display has been updated 17336 >= 1 if successful, i.e. display has been updated
17337 0 if otherwise unsuccessful 17337 specifically:
17338 1 means the changes were in front of a newline that precedes
17339 the window start, and the whole current matrix was reused
17340 2 means the changes were after the last position displayed
17341 in the window, and the whole current matrix was reused
17342 3 means portions of the current matrix were reused, while
17343 some of the screen lines were redrawn
17338 -1 if redisplay with same window start is known not to succeed 17344 -1 if redisplay with same window start is known not to succeed
17345 0 if otherwise unsuccessful
17339 17346
17340 The following steps are performed: 17347 The following steps are performed:
17341 17348