# HG changeset patch # User Karl Heuer # Date 764461742 0 # Node ID e0bef61003ae1c80ce5024132b53bac133a1c24f # Parent 676612edbafe605faca87f141ab8238b2a49d8e2 (lock_file): Use assignment, not initialization. diff -r 676612edbafe -r e0bef61003ae src/filelock.c --- 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)))