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
02050596
Commit
02050596
authored
Sep 08, 1999
by
Richard M. Stallman
Browse files
Clear up previous change.
parent
95dccf75
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
src/editfns.c
src/editfns.c
+6
-4
No files found.
src/editfns.c
View file @
02050596
...
...
@@ -435,10 +435,12 @@ If BUFFER, return the number of characters in that buffer instead.")
{
if (NILP (buffer))
return make_number (Z - BEG);
else
{
CHECK_BUFFER
(
buffer
,
1
);
return
make_number
(
BUF_Z
(
XBUFFER
(
buffer
))
-
BUF_BEG
(
XBUFFER
(
buffer
)));
}
else
{
CHECK_BUFFER (buffer, 1);
return make_number (BUF_Z (XBUFFER (buffer))
- BUF_BEG (XBUFFER (buffer)));
}
}
DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 0, 0,
...
...
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