diff options
| author | Glenn Morris | 2018-10-16 08:08:04 -0700 |
|---|---|---|
| committer | Glenn Morris | 2018-10-16 08:08:04 -0700 |
| commit | 722833d30e609655de4675dd5c25eb8460947f93 (patch) | |
| tree | 3d84d6cab52b3c697126d8c4ed3cffd56d24474e /src/window.c | |
| parent | 76a6417baf8ad5e2513b19f63e27c5c913555329 (diff) | |
| parent | 73babba26aa714c34aa8d9473ba5b55ce110a215 (diff) | |
| download | emacs-722833d30e609655de4675dd5c25eb8460947f93.tar.gz emacs-722833d30e609655de4675dd5c25eb8460947f93.zip | |
Merge from origin/emacs-26
73babba (origin/emacs-26) Clarify documentation of fractional vertica...
b20c51d * lisp/isearch.el (isearch-cmds): Recall absent isearch--stat...
700acbd doc/lispref/edebug.texi (Specification List) Remove obstrusiv...
1902450 Fix wording in module API documentation
e724a8f Fix redisplay of glyphless characters
8fc892d Update --without-toolkit-scroll-bars doc
80e0bfa Call GTK functions only on GTK scrollbars
91c4c46 Update the description of startup in ELisp manual
18b42c6 Use the 'line-number' face for line-number fields past EOB
a6ab8db Ensure NS frame is redrawn correctly after scroll
Conflicts:
lisp/isearch.el
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c index 6cdc52f90e6..20084a15c16 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -7362,6 +7362,8 @@ value. */) | |||
| 7362 | 7362 | ||
| 7363 | DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 2, 0, | 7363 | DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 2, 0, |
| 7364 | doc: /* Return the amount by which WINDOW is scrolled vertically. | 7364 | doc: /* Return the amount by which WINDOW is scrolled vertically. |
| 7365 | This takes effect when displaying tall lines or images. | ||
| 7366 | |||
| 7365 | If WINDOW is omitted or nil, it defaults to the selected window. | 7367 | If WINDOW is omitted or nil, it defaults to the selected window. |
| 7366 | Normally, value is a multiple of the canonical character height of WINDOW; | 7368 | Normally, value is a multiple of the canonical character height of WINDOW; |
| 7367 | optional second arg PIXELS-P means value is measured in pixels. */) | 7369 | optional second arg PIXELS-P means value is measured in pixels. */) |
| @@ -7384,6 +7386,8 @@ optional second arg PIXELS-P means value is measured in pixels. */) | |||
| 7384 | DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll, | 7386 | DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll, |
| 7385 | 2, 3, 0, | 7387 | 2, 3, 0, |
| 7386 | doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL. | 7388 | doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL. |
| 7389 | This takes effect when displaying tall lines or images. | ||
| 7390 | |||
| 7387 | WINDOW nil means use the selected window. Normally, VSCROLL is a | 7391 | WINDOW nil means use the selected window. Normally, VSCROLL is a |
| 7388 | non-negative multiple of the canonical character height of WINDOW; | 7392 | non-negative multiple of the canonical character height of WINDOW; |
| 7389 | optional third arg PIXELS-P non-nil means that VSCROLL is in pixels. | 7393 | optional third arg PIXELS-P non-nil means that VSCROLL is in pixels. |