aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-01-30 16:11:29 +0000
committerJuanma Barranquero2006-01-30 16:11:29 +0000
commit8cd0d6614dc54d0799131d616393fa2eeaeb2485 (patch)
treec5230f67014e192d157779fe3d6a1dd620d96b99
parentcd25a248cec19ba9b0869066ed67ada9c6caf117 (diff)
downloademacs-8cd0d6614dc54d0799131d616393fa2eeaeb2485.tar.gz
emacs-8cd0d6614dc54d0799131d616393fa2eeaeb2485.zip
(Fother_window, Fwindow_vscroll, Fset_window_vscroll): Fix typos in docstrings.
-rw-r--r--src/window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c
index 7c829d1fb89..7051b709b87 100644
--- a/src/window.c
+++ b/src/window.c
@@ -1829,7 +1829,7 @@ DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
1829All windows on current frame are arranged in a cyclic order. 1829All windows on current frame are arranged in a cyclic order.
1830This command selects the window ARG steps away in that order. 1830This command selects the window ARG steps away in that order.
1831A negative ARG moves in the opposite order. The optional second 1831A negative ARG moves in the opposite order. The optional second
1832argument ALL_FRAMES has the same meaning as in `next-window', which see. */) 1832argument ALL-FRAMES has the same meaning as in `next-window', which see. */)
1833 (arg, all_frames) 1833 (arg, all_frames)
1834 Lisp_Object arg, all_frames; 1834 Lisp_Object arg, all_frames;
1835{ 1835{
@@ -6660,7 +6660,7 @@ DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 2, 0,
6660 doc: /* Return the amount by which WINDOW is scrolled vertically. 6660 doc: /* Return the amount by which WINDOW is scrolled vertically.
6661Use the selected window if WINDOW is nil or omitted. 6661Use the selected window if WINDOW is nil or omitted.
6662Normally, value is a multiple of the canonical character height of WINDOW; 6662Normally, value is a multiple of the canonical character height of WINDOW;
6663optional second arg PIXELS_P means value is measured in pixels. */) 6663optional second arg PIXELS-P means value is measured in pixels. */)
6664 (window, pixels_p) 6664 (window, pixels_p)
6665 Lisp_Object window, pixels_p; 6665 Lisp_Object window, pixels_p;
6666{ 6666{
@@ -6690,7 +6690,7 @@ DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
6690 doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL. 6690 doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL.
6691WINDOW nil means use the selected window. Normally, VSCROLL is a 6691WINDOW nil means use the selected window. Normally, VSCROLL is a
6692non-negative multiple of the canonical character height of WINDOW; 6692non-negative multiple of the canonical character height of WINDOW;
6693optional third arg PIXELS_P non-nil means that VSCROLL is in pixels. 6693optional third arg PIXELS-P non-nil means that VSCROLL is in pixels.
6694If PIXELS-P is nil, VSCROLL may have to be rounded so that it 6694If PIXELS-P is nil, VSCROLL may have to be rounded so that it
6695corresponds to an integral number of pixels. The return value is the 6695corresponds to an integral number of pixels. The return value is the
6696result of this rounding. 6696result of this rounding.