aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorGlenn Morris2018-10-16 08:08:04 -0700
committerGlenn Morris2018-10-16 08:08:04 -0700
commit722833d30e609655de4675dd5c25eb8460947f93 (patch)
tree3d84d6cab52b3c697126d8c4ed3cffd56d24474e /src/window.c
parent76a6417baf8ad5e2513b19f63e27c5c913555329 (diff)
parent73babba26aa714c34aa8d9473ba5b55ce110a215 (diff)
downloademacs-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.c4
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
7363DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 2, 0, 7363DEFUN ("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.
7365This takes effect when displaying tall lines or images.
7366
7365If WINDOW is omitted or nil, it defaults to the selected window. 7367If WINDOW is omitted or nil, it defaults to the selected window.
7366Normally, value is a multiple of the canonical character height of WINDOW; 7368Normally, value is a multiple of the canonical character height of WINDOW;
7367optional second arg PIXELS-P means value is measured in pixels. */) 7369optional 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. */)
7384DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll, 7386DEFUN ("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.
7389This takes effect when displaying tall lines or images.
7390
7387WINDOW nil means use the selected window. Normally, VSCROLL is a 7391WINDOW nil means use the selected window. Normally, VSCROLL is a
7388non-negative multiple of the canonical character height of WINDOW; 7392non-negative multiple of the canonical character height of WINDOW;
7389optional third arg PIXELS-P non-nil means that VSCROLL is in pixels. 7393optional third arg PIXELS-P non-nil means that VSCROLL is in pixels.