diff options
author | Karoly Lorentey <lorentey@elte.hu> | 2006-02-01 02:04:15 +0000 |
---|---|---|
committer | Karoly Lorentey <lorentey@elte.hu> | 2006-02-01 02:04:15 +0000 |
commit | eb2bfdae0a1b6579908f072ab57aec0d80d6c6ec (patch) | |
tree | 2abdd13c797be8b59fa9cbd25de93db07ead9ca9 /src | |
parent | 55187be10d911cb5c0b41b6a64b5e9edb28ae60a (diff) | |
parent | 4cdcdcc9ce7ba9f8644432e755a450b1b62b522a (diff) | |
download | emacs-eb2bfdae0a1b6579908f072ab57aec0d80d6c6ec.tar.gz |
Merged from
Patches applied:
* emacs@sv.gnu.org/emacs--devo--0--patch-31
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-503
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 @@ +2006-01-30 Luc Teirlinck <teirllm@auburn.edu> + + * data.c (Flistp): Doc fix. + +2006-01-30 Juanma Barranquero <lekktu@gmail.com> + + * window.c (Fother_window, Fwindow_vscroll, Fset_window_vscroll): + Fix typos in docstrings. + 2006-01-28 Luc Teirlinck <teirllm@auburn.edu> * 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, } DEFUN ("listp", Flistp, Slistp, 1, 1, 0, - doc: /* Return t if OBJECT is a list. This includes nil. */) + doc: /* Return t if OBJECT is a list, that is, a cons cell or nil. +Otherwise, return nil. */) (object) Lisp_Object object; { 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", All windows on current frame are arranged in a cyclic order. This command selects the window ARG steps away in that order. A negative ARG moves in the opposite order. The optional second -argument ALL_FRAMES has the same meaning as in `next-window', which see. */) +argument ALL-FRAMES has the same meaning as in `next-window', which see. */) (arg, all_frames) Lisp_Object arg, all_frames; { @@ -6662,7 +6662,7 @@ DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 2, 0, doc: /* Return the amount by which WINDOW is scrolled vertically. Use the selected window if WINDOW is nil or omitted. Normally, value is a multiple of the canonical character height of WINDOW; -optional second arg PIXELS_P means value is measured in pixels. */) +optional second arg PIXELS-P means value is measured in pixels. */) (window, pixels_p) Lisp_Object window, pixels_p; { @@ -6692,7 +6692,7 @@ DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll, doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL. WINDOW nil means use the selected window. Normally, VSCROLL is a non-negative multiple of the canonical character height of WINDOW; -optional third arg PIXELS_P non-nil means that VSCROLL is in pixels. +optional third arg PIXELS-P non-nil means that VSCROLL is in pixels. If PIXELS-P is nil, VSCROLL may have to be rounded so that it corresponds to an integral number of pixels. The return value is the result of this rounding. |