]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fchar_after, Fchar_before): Doc fix.
authorDave Love <fx@gnu.org>
Wed, 26 Jan 2000 17:53:22 +0000 (17:53 +0000)
committerDave Love <fx@gnu.org>
Wed, 26 Jan 2000 17:53:22 +0000 (17:53 +0000)
src/editfns.c

index 76bf5235f8f6f0ef3dea9ac44acce75333e3e33f..64c62112776baded2eeb14e9e342f03287a13767 100644 (file)
@@ -920,7 +920,7 @@ DEFUN ("eolp", Feolp, Seolp, 0, 0, 0,
 
 DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0,
   "Return character in current buffer at position POS.\n\
-POS is an integer or a buffer pointer.\n\
+POS is an integer or a marker.\n\
 If POS is out of range, the value is nil.")
   (pos)
      Lisp_Object pos;
@@ -953,7 +953,7 @@ If POS is out of range, the value is nil.")
 
 DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0,
   "Return character in current buffer preceding position POS.\n\
-POS is an integer or a buffer pointer.\n\
+POS is an integer or a marker.\n\
 If POS is out of range, the value is nil.")
   (pos)
      Lisp_Object pos;