diff src/editfns.c @ 53819:a3fe35a8b56b

(Fchar_after, Fchar_before): Doc fixes.
author Luc Teirlinck <teirllm@auburn.edu>
date Thu, 05 Feb 2004 04:16:49 +0000
parents 4f06a8a0e7a6
children 29d4d158e5eb
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;