# HG changeset patch # User Luc Teirlinck # Date 1075954609 0 # Node ID a3fe35a8b56b3e5dd33330718e3c01674e471ca7 # Parent a3c89ed1aac587e3a09f87b30fbfb66225fad7f2 (Fchar_after, Fchar_before): Doc fixes. diff -r a3c89ed1aac5 -r a3fe35a8b56b src/editfns.c --- 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;