1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-03 08:30:09 +00:00

(Fchar_after, Fchar_before): Doc fixes.

This commit is contained in:
Luc Teirlinck 2004-02-05 04:19:44 +00:00
parent 5b698285fa
commit 64d1e37322
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-02-04 Luc Teirlinck <teirllm@auburn.edu>
* editfns.c (Fchar_after, Fchar_before): Doc fixes.
2004-02-05 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* xselect.c: Include stdio,h.

View File

@ -1138,7 +1138,7 @@ DEFUN ("eolp", Feolp, Seolp, 0, 0, 0,
DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0,
doc: /* Return character in current buffer at position POS.
POS is an integer or a marker.
POS is an integer or a marker and defaults to point.
If POS is out of range, the value is nil. */)
(pos)
Lisp_Object pos;
@ -1171,7 +1171,7 @@ If POS is out of range, the value is nil. */)
DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0,
doc: /* Return character in current buffer preceding position POS.
POS is an integer or a marker.
POS is an integer or a marker and defaults to point.
If POS is out of range, the value is nil. */)
(pos)
Lisp_Object pos;