]> git.eshelyaron.com Git - emacs.git/commitdiff
(lock_file): Use assignment, not initialization.
authorKarl Heuer <kwzh@gnu.org>
Wed, 23 Mar 1994 22:29:02 +0000 (22:29 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 23 Mar 1994 22:29:02 +0000 (22:29 +0000)
src/filelock.c

index 48d1f0f758bafa4ea68404dc001e3775a8f2e0f9..d6ee952348bf2bb140644a14aae8a3ba963c15fa 100644 (file)
@@ -207,7 +207,8 @@ lock_file (fn)
   /* 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)))