Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
291026b5
Commit
291026b5
authored
Oct 31, 1992
by
Jim Blandy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* buffer.c (reset_buffer): Don't assign to b->save_length as if it
were an int; use XFASTINT.
parent
5bc1518a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/buffer.c
src/buffer.c
+1
-1
No files found.
src/buffer.c
View file @
291026b5
...
...
@@ -265,7 +265,7 @@ reset_buffer (b)
b
->
directory
=
(
current_buffer
)
?
current_buffer
->
directory
:
Qnil
;
b
->
modtime
=
0
;
b
->
save_modified
=
1
;
b
->
save_length
=
0
;
XFASTINT
(
b
->
save_length
)
=
0
;
b
->
last_window_start
=
1
;
b
->
backed_up
=
Qnil
;
b
->
auto_save_modified
=
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