]> git.eshelyaron.com Git - emacs.git/commitdiff
(preceding-char, following-char): Doc fix.
authorDave Love <fx@gnu.org>
Mon, 10 Apr 2000 17:42:19 +0000 (17:42 +0000)
committerDave Love <fx@gnu.org>
Mon, 10 Apr 2000 17:42:19 +0000 (17:42 +0000)
src/editfns.c

index c2465e7f9e846f6f37ac95740b07f2d0f708c11a..d4f8b5fd8c46c21b8c02763eebfb266e251f3836 100644 (file)
@@ -843,10 +843,7 @@ If BYTEPOS is out of range, the value is nil.")
 \f
 DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0,
   "Return the character following point, as a number.\n\
-At the end of the buffer or accessible region, return 0.\n\
-If `enable-multibyte-characters' is nil or point is not\n\
- at character boundary,  multibyte form is ignored,\n\
- and only one byte following point is returned as a character.")
+At the end of the buffer or accessible region, return 0.")
   ()
 {
   Lisp_Object temp;
@@ -859,10 +856,7 @@ If `enable-multibyte-characters' is nil or point is not\n\
 
 DEFUN ("preceding-char", Fprevious_char, Sprevious_char, 0, 0, 0,
   "Return the character preceding point, as a number.\n\
-At the beginning of the buffer or accessible region, return 0.\n\
-If `enable-multibyte-characters' is nil or point is not\n\
- at character boundary, multi-byte form is ignored,\n\
- and only one byte preceding point is returned as a character.")
+At the beginning of the buffer or accessible region, return 0.")
   ()
 {
   Lisp_Object temp;