diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 11 |
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 | ||