Mercurial > emacs
changeset 28545:19535c629080
(preceding-char, following-char): Doc fix.
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 10 Apr 2000 17:42:19 +0000 |
parents | b42146066357 |
children | 74440e467c99 |
files | src/editfns.c |
diffstat | 1 files changed, 2 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/editfns.c Mon Apr 10 14:32:11 2000 +0000 +++ b/src/editfns.c Mon Apr 10 17:42:19 2000 +0000 @@ -843,10 +843,7 @@ 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 @@ 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;