From: Luc Teirlinck Date: Thu, 5 Feb 2004 04:19:44 +0000 (+0000) Subject: (Fchar_after, Fchar_before): Doc fixes. X-Git-Tag: ttn-vms-21-2-B4~7740 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=64d1e37322a084c3f342c359e140eda10696622f;p=emacs.git (Fchar_after, Fchar_before): Doc fixes. --- diff --git a/src/ChangeLog b/src/ChangeLog index 08c4f509d2d..e690c0b4170 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2004-02-04 Luc Teirlinck + + * editfns.c (Fchar_after, Fchar_before): Doc fixes. + 2004-02-05 Jan Dj,Ad(Brv * xselect.c: Include stdio,h. diff --git a/src/editfns.c b/src/editfns.c index d3039ca0273..9a1ce81f316 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -1138,7 +1138,7 @@ DEFUN ("eolp", Feolp, Seolp, 0, 0, 0, DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0, doc: /* Return character in current buffer at position POS. -POS is an integer or a marker. +POS is an integer or a marker and defaults to point. If POS is out of range, the value is nil. */) (pos) Lisp_Object pos; @@ -1171,7 +1171,7 @@ If POS is out of range, the value is nil. */) DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0, doc: /* Return character in current buffer preceding position POS. -POS is an integer or a marker. +POS is an integer or a marker and defaults to point. If POS is out of range, the value is nil. */) (pos) Lisp_Object pos;