Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
df3b0cc6
Commit
df3b0cc6
authored
Apr 10, 2000
by
Dave Love
Browse files
(preceding-char, following-char): Doc fix.
parent
192cb6cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
src/editfns.c
src/editfns.c
+2
-8
No files found.
src/editfns.c
View file @
df3b0cc6
...
...
@@ -843,10 +843,7 @@ If BYTEPOS is out of range, the value is nil.")
DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0,
"Return the character following point, as a number.\n\
At the end of the buffer or accessible region, return 0.
\n
\
If `enable-multibyte-characters' is nil or point is not
\n
\
at character boundary, multibyte form is ignored,
\n
\
and only one byte following point is returned as a character."
)
At the end of the buffer or accessible region, return 0.")
()
{
Lisp_Object temp;
...
...
@@ -859,10 +856,7 @@ If `enable-multibyte-characters' is nil or point is not\n\
DEFUN ("preceding-char", Fprevious_char, Sprevious_char, 0, 0, 0,
"Return the character preceding point, as a number.\n\
At the beginning of the buffer or accessible region, return 0.
\n
\
If `enable-multibyte-characters' is nil or point is not
\n
\
at character boundary, multi-byte form is ignored,
\n
\
and only one byte preceding point is returned as a character."
)
At the beginning of the buffer or accessible region, return 0.")
()
{
Lisp_Object temp;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment