diff options
| author | Dave Love | 2000-01-26 17:53:22 +0000 |
|---|---|---|
| committer | Dave Love | 2000-01-26 17:53:22 +0000 |
| commit | 4d54f79436f0ea212a41056b015659fed10a0458 (patch) | |
| tree | 2d334bffb31e3da2da81541c8e54f10407bf6461 /src | |
| parent | d8693181b0be3f0652b95109f019840a52b836c9 (diff) | |
| download | emacs-4d54f79436f0ea212a41056b015659fed10a0458.tar.gz emacs-4d54f79436f0ea212a41056b015659fed10a0458.zip | |
(Fchar_after, Fchar_before): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index 76bf5235f8f..64c62112776 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -920,7 +920,7 @@ DEFUN ("eolp", Feolp, Seolp, 0, 0, 0, | |||
| 920 | 920 | ||
| 921 | DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0, | 921 | DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0, |
| 922 | "Return character in current buffer at position POS.\n\ | 922 | "Return character in current buffer at position POS.\n\ |
| 923 | POS is an integer or a buffer pointer.\n\ | 923 | POS is an integer or a marker.\n\ |
| 924 | If POS is out of range, the value is nil.") | 924 | If POS is out of range, the value is nil.") |
| 925 | (pos) | 925 | (pos) |
| 926 | Lisp_Object pos; | 926 | Lisp_Object pos; |
| @@ -953,7 +953,7 @@ If POS is out of range, the value is nil.") | |||
| 953 | 953 | ||
| 954 | DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0, | 954 | DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0, |
| 955 | "Return character in current buffer preceding position POS.\n\ | 955 | "Return character in current buffer preceding position POS.\n\ |
| 956 | POS is an integer or a buffer pointer.\n\ | 956 | POS is an integer or a marker.\n\ |
| 957 | If POS is out of range, the value is nil.") | 957 | If POS is out of range, the value is nil.") |
| 958 | (pos) | 958 | (pos) |
| 959 | Lisp_Object pos; | 959 | Lisp_Object pos; |