# HG changeset patch # User Dave Love # Date 955388539 0 # Node ID 19535c629080e5c14e6adb13c2a3b4e2d8f79db6 # Parent b421460663571d72b268f8724921a0024c09f7ac (preceding-char, following-char): Doc fix. diff -r b42146066357 -r 19535c629080 src/editfns.c --- 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;