From df3b0cc64ed41e83302903277422017e0a77de66 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Mon, 10 Apr 2000 17:42:19 +0000 Subject: [PATCH] (preceding-char, following-char): Doc fix. --- src/editfns.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) 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; -- 2.39.5