aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-04-06 20:25:40 +0000
committerRichard M. Stallman2003-04-06 20:25:40 +0000
commita3a349c42d8d0bf8efdecb578ec4985101f73061 (patch)
tree3fb126c418f61fe95b81f480c2610f671668e310
parent2060e50ca2e62553604d2a301ea0a97679292a59 (diff)
downloademacs-a3a349c42d8d0bf8efdecb578ec4985101f73061.tar.gz
emacs-a3a349c42d8d0bf8efdecb578ec4985101f73061.zip
(Near Point): Fix nonsense in char-before.
-rw-r--r--lispref/text.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/text.texi b/lispref/text.texi
index c0df73cb13c..c5bd5661ad4 100644
--- a/lispref/text.texi
+++ b/lispref/text.texi
@@ -89,7 +89,7 @@ buffer is @samp{@@}:
89@defun char-before &optional position 89@defun char-before &optional position
90This function returns the character in the current buffer immediately 90This function returns the character in the current buffer immediately
91before position @var{position}. If @var{position} is out of range for 91before position @var{position}. If @var{position} is out of range for
92this purpose, either before the beginning of the buffer, or at or beyond 92this purpose, either at or before the beginning of the buffer, or beyond
93the end, then the value is @code{nil}. The default for 93the end, then the value is @code{nil}. The default for
94@var{position} is point. 94@var{position} is point.
95@end defun 95@end defun