diff options
| author | Luc Teirlinck | 2004-02-05 04:19:44 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-02-05 04:19:44 +0000 |
| commit | 64d1e37322a084c3f342c359e140eda10696622f (patch) | |
| tree | 3bfacf0117e1bab42afb00c23e2a09742c208e31 /src | |
| parent | 5b698285fa77132232b3f0f224c53460ce1bf50c (diff) | |
| download | emacs-64d1e37322a084c3f342c359e140eda10696622f.tar.gz emacs-64d1e37322a084c3f342c359e140eda10696622f.zip | |
(Fchar_after, Fchar_before): Doc fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/editfns.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 08c4f509d2d..e690c0b4170 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-02-04 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * editfns.c (Fchar_after, Fchar_before): Doc fixes. | ||
| 4 | |||
| 1 | 2004-02-05 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 5 | 2004-02-05 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 6 | ||
| 3 | * xselect.c: Include stdio,h. | 7 | * xselect.c: Include stdio,h. |
diff --git a/src/editfns.c b/src/editfns.c index d3039ca0273..9a1ce81f316 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -1138,7 +1138,7 @@ DEFUN ("eolp", Feolp, Seolp, 0, 0, 0, | |||
| 1138 | 1138 | ||
| 1139 | DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0, | 1139 | DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0, |
| 1140 | doc: /* Return character in current buffer at position POS. | 1140 | doc: /* Return character in current buffer at position POS. |
| 1141 | POS is an integer or a marker. | 1141 | POS is an integer or a marker and defaults to point. |
| 1142 | If POS is out of range, the value is nil. */) | 1142 | If POS is out of range, the value is nil. */) |
| 1143 | (pos) | 1143 | (pos) |
| 1144 | Lisp_Object pos; | 1144 | Lisp_Object pos; |
| @@ -1171,7 +1171,7 @@ If POS is out of range, the value is nil. */) | |||
| 1171 | 1171 | ||
| 1172 | DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0, | 1172 | DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0, |
| 1173 | doc: /* Return character in current buffer preceding position POS. | 1173 | doc: /* Return character in current buffer preceding position POS. |
| 1174 | POS is an integer or a marker. | 1174 | POS is an integer or a marker and defaults to point. |
| 1175 | If POS is out of range, the value is nil. */) | 1175 | If POS is out of range, the value is nil. */) |
| 1176 | (pos) | 1176 | (pos) |
| 1177 | Lisp_Object pos; | 1177 | Lisp_Object pos; |