aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog9
-rw-r--r--src/data.c3
-rw-r--r--src/window.c6
3 files changed, 14 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4a48e9ac452..c85a6e78e73 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12006-01-30 Luc Teirlinck <teirllm@auburn.edu>
2
3 * data.c (Flistp): Doc fix.
4
52006-01-30 Juanma Barranquero <lekktu@gmail.com>
6
7 * window.c (Fother_window, Fwindow_vscroll, Fset_window_vscroll):
8 Fix typos in docstrings.
9
12006-01-28 Luc Teirlinck <teirllm@auburn.edu> 102006-01-28 Luc Teirlinck <teirllm@auburn.edu>
2 11
3 * data.c (Fcar, Fcdr): Add links to Elisp manual to the docstrings. 12 * data.c (Fcar, Fcdr): Add links to Elisp manual to the docstrings.
diff --git a/src/data.c b/src/data.c
index c70e3219eac..10d6a1e9eb5 100644
--- a/src/data.c
+++ b/src/data.c
@@ -275,7 +275,8 @@ DEFUN ("atom", Fatom, Satom, 1, 1, 0,
275} 275}
276 276
277DEFUN ("listp", Flistp, Slistp, 1, 1, 0, 277DEFUN ("listp", Flistp, Slistp, 1, 1, 0,
278 doc: /* Return t if OBJECT is a list. This includes nil. */) 278 doc: /* Return t if OBJECT is a list, that is, a cons cell or nil.
279Otherwise, return nil. */)
279 (object) 280 (object)
280 Lisp_Object object; 281 Lisp_Object object;
281{ 282{
diff --git a/src/window.c b/src/window.c
index dd80f629e1e..25656307648 100644
--- a/src/window.c
+++ b/src/window.c
@@ -1831,7 +1831,7 @@ DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
1831All windows on current frame are arranged in a cyclic order. 1831All windows on current frame are arranged in a cyclic order.
1832This command selects the window ARG steps away in that order. 1832This command selects the window ARG steps away in that order.
1833A negative ARG moves in the opposite order. The optional second 1833A negative ARG moves in the opposite order. The optional second
1834argument ALL_FRAMES has the same meaning as in `next-window', which see. */) 1834argument ALL-FRAMES has the same meaning as in `next-window', which see. */)
1835 (arg, all_frames) 1835 (arg, all_frames)
1836 Lisp_Object arg, all_frames; 1836 Lisp_Object arg, all_frames;
1837{ 1837{
@@ -6662,7 +6662,7 @@ DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 2, 0,
6662 doc: /* Return the amount by which WINDOW is scrolled vertically. 6662 doc: /* Return the amount by which WINDOW is scrolled vertically.
6663Use the selected window if WINDOW is nil or omitted. 6663Use the selected window if WINDOW is nil or omitted.
6664Normally, value is a multiple of the canonical character height of WINDOW; 6664Normally, value is a multiple of the canonical character height of WINDOW;
6665optional second arg PIXELS_P means value is measured in pixels. */) 6665optional second arg PIXELS-P means value is measured in pixels. */)
6666 (window, pixels_p) 6666 (window, pixels_p)
6667 Lisp_Object window, pixels_p; 6667 Lisp_Object window, pixels_p;
6668{ 6668{
@@ -6692,7 +6692,7 @@ DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
6692 doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL. 6692 doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL.
6693WINDOW nil means use the selected window. Normally, VSCROLL is a 6693WINDOW nil means use the selected window. Normally, VSCROLL is a
6694non-negative multiple of the canonical character height of WINDOW; 6694non-negative multiple of the canonical character height of WINDOW;
6695optional third arg PIXELS_P non-nil means that VSCROLL is in pixels. 6695optional third arg PIXELS-P non-nil means that VSCROLL is in pixels.
6696If PIXELS-P is nil, VSCROLL may have to be rounded so that it 6696If PIXELS-P is nil, VSCROLL may have to be rounded so that it
6697corresponds to an integral number of pixels. The return value is the 6697corresponds to an integral number of pixels. The return value is the
6698result of this rounding. 6698result of this rounding.