diff options
| author | Dave Love | 2000-04-10 17:42:19 +0000 |
|---|---|---|
| committer | Dave Love | 2000-04-10 17:42:19 +0000 |
| commit | df3b0cc64ed41e83302903277422017e0a77de66 (patch) | |
| tree | 5dda9df356081d29579bbb0b21b853522949bce7 /src | |
| parent | 192cb6cfa231885b76bc926266c50340a64f85e7 (diff) | |
| download | emacs-df3b0cc64ed41e83302903277422017e0a77de66.tar.gz emacs-df3b0cc64ed41e83302903277422017e0a77de66.zip | |
(preceding-char, following-char): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 10 |
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 | ||
| 844 | DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0, | 844 | DEFUN ("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\ |
| 846 | At the end of the buffer or accessible region, return 0.\n\ | 846 | At the end of the buffer or accessible region, return 0.") |
| 847 | If `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 | ||
| 860 | DEFUN ("preceding-char", Fprevious_char, Sprevious_char, 0, 0, 0, | 857 | DEFUN ("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\ |
| 862 | At the beginning of the buffer or accessible region, return 0.\n\ | 859 | At the beginning of the buffer or accessible region, return 0.") |
| 863 | If `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; |