Mercurial > emacs
comparison src/filelock.c @ 40656:cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
| author | Pavel Jan?k <Pavel@Janik.cz> |
|---|---|
| date | Fri, 02 Nov 2001 20:46:55 +0000 |
| parents | c5853621fe9b |
| children | a17c8b15ef1b |
comparison
equal
deleted
inserted
replaced
| 40655:45453187feeb | 40656:cdfd4d09b79a |
|---|---|
| 681 Lisp_Object file; | 681 Lisp_Object file; |
| 682 { | 682 { |
| 683 if (NILP (file)) | 683 if (NILP (file)) |
| 684 file = current_buffer->file_truename; | 684 file = current_buffer->file_truename; |
| 685 else | 685 else |
| 686 CHECK_STRING (file, 0); | 686 CHECK_STRING (file); |
| 687 if (SAVE_MODIFF < MODIFF | 687 if (SAVE_MODIFF < MODIFF |
| 688 && !NILP (file)) | 688 && !NILP (file)) |
| 689 lock_file (file); | 689 lock_file (file); |
| 690 return Qnil; | 690 return Qnil; |
| 691 } | 691 } |
