diff options
Diffstat (limited to 'src/filelock.c')
| -rw-r--r-- | src/filelock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filelock.c b/src/filelock.c index 88cdc6d72a6..fc1c974c44e 100644 --- a/src/filelock.c +++ b/src/filelock.c | |||
| @@ -54,7 +54,7 @@ extern int errno; | |||
| 54 | 54 | ||
| 55 | #include "lisp.h" | 55 | #include "lisp.h" |
| 56 | #include "buffer.h" | 56 | #include "buffer.h" |
| 57 | #include "charset.h" | 57 | #include "character.h" |
| 58 | #include "coding.h" | 58 | #include "coding.h" |
| 59 | #include "systime.h" | 59 | #include "systime.h" |
| 60 | 60 | ||
| @@ -667,7 +667,7 @@ unlock_all_files () | |||
| 667 | register Lisp_Object tail; | 667 | register Lisp_Object tail; |
| 668 | register struct buffer *b; | 668 | register struct buffer *b; |
| 669 | 669 | ||
| 670 | for (tail = Vbuffer_alist; GC_CONSP (tail); tail = XCDR (tail)) | 670 | for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail)) |
| 671 | { | 671 | { |
| 672 | b = XBUFFER (XCDR (XCAR (tail))); | 672 | b = XBUFFER (XCDR (XCAR (tail))); |
| 673 | if (STRINGP (b->file_truename) && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)) | 673 | if (STRINGP (b->file_truename) && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)) |