From: Dave Love Date: Mon, 10 Apr 2000 17:42:19 +0000 (+0000) Subject: (preceding-char, following-char): Doc fix. X-Git-Tag: emacs-pretest-21.0.90~4288 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=df3b0cc64ed41e83302903277422017e0a77de66;p=emacs.git (preceding-char, following-char): Doc fix. --- diff --git a/src/editfns.c b/src/editfns.c index c2465e7f9e8..d4f8b5fd8c4 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -843,10 +843,7 @@ If BYTEPOS is out of range, the value is nil.") 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;