changeset 41211:2e188a8c4ad8

(Fwrite_region): Avoid initializer for Lisp_Object.
author Richard M. Stallman <rms@gnu.org>
date Sat, 17 Nov 2001 21:08:43 +0000
parents b82ef9da4565
children ed6323982bbe
files src/fileio.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/fileio.c	Sat Nov 17 20:38:50 2001 +0000
+++ b/src/fileio.c	Sat Nov 17 21:08:43 2001 +0000
@@ -4680,7 +4680,7 @@
 #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 @@
   if (NILP (lockname))
     lockname = visit_file;
 
+  annotations = Qnil;
+
   GCPRO5 (start, filename, annotations, visit_file, lockname);
 
   /* If the file name has special constructs in it,