diff options
| author | Karl Heuer | 1994-03-23 22:29:02 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-03-23 22:29:02 +0000 |
| commit | a57bc48815bde66703d2153894a931d554cc963e (patch) | |
| tree | dca98fccbe3f19e715ee2451d9f263604af40d94 /src | |
| parent | e762e30a1eb752c4b0b2dad6358e279b6633d879 (diff) | |
| download | emacs-a57bc48815bde66703d2153894a931d554cc963e.tar.gz emacs-a57bc48815bde66703d2153894a931d554cc963e.zip | |
(lock_file): Use assignment, not initialization.
Diffstat (limited to 'src')
| -rw-r--r-- | src/filelock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/filelock.c b/src/filelock.c index 48d1f0f758b..d6ee952348b 100644 --- a/src/filelock.c +++ b/src/filelock.c | |||
| @@ -207,7 +207,8 @@ lock_file (fn) | |||
| 207 | /* See if this file is visited and has changed on disk since it was | 207 | /* See if this file is visited and has changed on disk since it was |
| 208 | visited. */ | 208 | visited. */ |
| 209 | { | 209 | { |
| 210 | register Lisp_Object subject_buf = Fget_file_buffer (fn); | 210 | register Lisp_Object subject_buf; |
| 211 | subject_buf = Fget_file_buffer (fn); | ||
| 211 | if (!NILP (subject_buf) | 212 | if (!NILP (subject_buf) |
| 212 | && NILP (Fverify_visited_file_modtime (subject_buf)) | 213 | && NILP (Fverify_visited_file_modtime (subject_buf)) |
| 213 | && !NILP (Ffile_exists_p (fn))) | 214 | && !NILP (Ffile_exists_p (fn))) |