Mercurial > emacs
changeset 53819:a3fe35a8b56b
(Fchar_after, Fchar_before): Doc fixes.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Thu, 05 Feb 2004 04:16:49 +0000 |
parents | a3c89ed1aac5 |
children | 45a2ab3257d2 |
files | src/editfns.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/editfns.c Thu Feb 05 02:42:14 2004 +0000 +++ b/src/editfns.c Thu Feb 05 04:16:49 2004 +0000 @@ -1138,7 +1138,7 @@ 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 @@ 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;