diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 9 | ||||
| -rw-r--r-- | src/data.c | 3 | ||||
| -rw-r--r-- | src/window.c | 6 |
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 @@ | |||
| 1 | 2006-01-30 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * data.c (Flistp): Doc fix. | ||
| 4 | |||
| 5 | 2006-01-30 Juanma Barranquero <lekktu@gmail.com> | ||
| 6 | |||
| 7 | * window.c (Fother_window, Fwindow_vscroll, Fset_window_vscroll): | ||
| 8 | Fix typos in docstrings. | ||
| 9 | |||
| 1 | 2006-01-28 Luc Teirlinck <teirllm@auburn.edu> | 10 | 2006-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 | ||
| 277 | DEFUN ("listp", Flistp, Slistp, 1, 1, 0, | 277 | DEFUN ("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. |
| 279 | Otherwise, 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", | |||
| 1831 | All windows on current frame are arranged in a cyclic order. | 1831 | All windows on current frame are arranged in a cyclic order. |
| 1832 | This command selects the window ARG steps away in that order. | 1832 | This command selects the window ARG steps away in that order. |
| 1833 | A negative ARG moves in the opposite order. The optional second | 1833 | A negative ARG moves in the opposite order. The optional second |
| 1834 | argument ALL_FRAMES has the same meaning as in `next-window', which see. */) | 1834 | argument 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. |
| 6663 | Use the selected window if WINDOW is nil or omitted. | 6663 | Use the selected window if WINDOW is nil or omitted. |
| 6664 | Normally, value is a multiple of the canonical character height of WINDOW; | 6664 | Normally, value is a multiple of the canonical character height of WINDOW; |
| 6665 | optional second arg PIXELS_P means value is measured in pixels. */) | 6665 | optional 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. |
| 6693 | WINDOW nil means use the selected window. Normally, VSCROLL is a | 6693 | WINDOW nil means use the selected window. Normally, VSCROLL is a |
| 6694 | non-negative multiple of the canonical character height of WINDOW; | 6694 | non-negative multiple of the canonical character height of WINDOW; |
| 6695 | optional third arg PIXELS_P non-nil means that VSCROLL is in pixels. | 6695 | optional third arg PIXELS-P non-nil means that VSCROLL is in pixels. |
| 6696 | If PIXELS-P is nil, VSCROLL may have to be rounded so that it | 6696 | If PIXELS-P is nil, VSCROLL may have to be rounded so that it |
| 6697 | corresponds to an integral number of pixels. The return value is the | 6697 | corresponds to an integral number of pixels. The return value is the |
| 6698 | result of this rounding. | 6698 | result of this rounding. |