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
65b7d3e7
Commit
65b7d3e7
authored
Nov 17, 2001
by
Richard M. Stallman
Browse files
(Fwrite_region): Avoid initializer for Lisp_Object.
parent
555f1a32
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/fileio.c
src/fileio.c
+3
-1
No files found.
src/ChangeLog
View file @
65b7d3e7
2001-11-17 Richard M. Stallman <rms@gnu.org>
* fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
2001-11-17 Jason Rumney <jasonr@gnu.org>
* xterm.c (notice_overwritten_cursor): Take care of end < 0 case.
...
...
src/fileio.c
View file @
65b7d3e7
...
...
@@ -4680,7 +4680,7 @@ This does code conversion according to the value of
#endif
/* VMS */
Lisp_Object
handler
;
Lisp_Object
visit_file
;
Lisp_Object
annotations
=
Qnil
;
Lisp_Object
annotations
;
Lisp_Object
encoded_filename
;
int
visiting
=
(
EQ
(
visit
,
Qt
)
||
STRINGP
(
visit
));
int
quietly
=
!
NILP
(
visit
);
...
...
@@ -4718,6 +4718,8 @@ This does code conversion according to the value of
if
(
NILP
(
lockname
))
lockname
=
visit_file
;
annotations
=
Qnil
;
GCPRO5
(
start
,
filename
,
annotations
,
visit_file
,
lockname
);
/* If the file name has special constructs in it,
...
...
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