changeset 6499:e0bef61003ae

(lock_file): Use assignment, not initialization.
author Karl Heuer <kwzh@gnu.org>
date Wed, 23 Mar 1994 22:29:02 +0000
parents 676612edbafe
children 551bff5cffde
files src/filelock.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/filelock.c	Wed Mar 23 22:28:22 1994 +0000
+++ b/src/filelock.c	Wed Mar 23 22:29:02 1994 +0000
@@ -207,7 +207,8 @@
   /* See if this file is visited and has changed on disk since it was
      visited.  */
   {
-    register Lisp_Object subject_buf = Fget_file_buffer (fn);
+    register Lisp_Object subject_buf;
+    subject_buf = Fget_file_buffer (fn);
     if (!NILP (subject_buf)
 	&& NILP (Fverify_visited_file_modtime (subject_buf))
 	&& !NILP (Ffile_exists_p (fn)))