aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2000-04-10 17:42:19 +0000
committerDave Love2000-04-10 17:42:19 +0000
commitdf3b0cc64ed41e83302903277422017e0a77de66 (patch)
tree5dda9df356081d29579bbb0b21b853522949bce7 /src
parent192cb6cfa231885b76bc926266c50340a64f85e7 (diff)
downloademacs-df3b0cc64ed41e83302903277422017e0a77de66.tar.gz
emacs-df3b0cc64ed41e83302903277422017e0a77de66.zip
(preceding-char, following-char): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c10
1 files 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.")
843 843
844DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0, 844DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0,
845 "Return the character following point, as a number.\n\ 845 "Return the character following point, as a number.\n\
846At the end of the buffer or accessible region, return 0.\n\ 846At the end of the buffer or accessible region, return 0.")
847If `enable-multibyte-characters' is nil or point is not\n\
848 at character boundary, multibyte form is ignored,\n\
849 and only one byte following point is returned as a character.")
850 () 847 ()
851{ 848{
852 Lisp_Object temp; 849 Lisp_Object temp;
@@ -859,10 +856,7 @@ If `enable-multibyte-characters' is nil or point is not\n\
859 856
860DEFUN ("preceding-char", Fprevious_char, Sprevious_char, 0, 0, 0, 857DEFUN ("preceding-char", Fprevious_char, Sprevious_char, 0, 0, 0,
861 "Return the character preceding point, as a number.\n\ 858 "Return the character preceding point, as a number.\n\
862At the beginning of the buffer or accessible region, return 0.\n\ 859At the beginning of the buffer or accessible region, return 0.")
863If `enable-multibyte-characters' is nil or point is not\n\
864 at character boundary, multi-byte form is ignored,\n\
865 and only one byte preceding point is returned as a character.")
866 () 860 ()
867{ 861{
868 Lisp_Object temp; 862 Lisp_Object temp;