diff options
| author | Gerd Moellmann | 1999-11-05 14:04:40 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-11-05 14:04:40 +0000 |
| commit | 8105cbf7512e4f80bb0ad236debe5b45a55097f1 (patch) | |
| tree | 43604ef8b1fde8152b98a1195b66a808bd467627 /src | |
| parent | 9da30515c76ab859e3391effb36eb7d99c8bb02a (diff) | |
| download | emacs-8105cbf7512e4f80bb0ad236debe5b45a55097f1.tar.gz emacs-8105cbf7512e4f80bb0ad236debe5b45a55097f1.zip | |
(Ffile_locked_p): Make FILENAME a required argument.
Diffstat (limited to 'src')
| -rw-r--r-- | src/filelock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filelock.c b/src/filelock.c index 66f347b479c..8ab6792e67d 100644 --- a/src/filelock.c +++ b/src/filelock.c | |||
| @@ -685,7 +685,7 @@ unlock_buffer (buffer) | |||
| 685 | unlock_file (buffer->file_truename); | 685 | unlock_file (buffer->file_truename); |
| 686 | } | 686 | } |
| 687 | 687 | ||
| 688 | DEFUN ("file-locked-p", Ffile_locked_p, Sfile_locked_p, 0, 1, 0, | 688 | DEFUN ("file-locked-p", Ffile_locked_p, Sfile_locked_p, 1, 1, 0, |
| 689 | "Return nil if the FILENAME is not locked,\n\ | 689 | "Return nil if the FILENAME is not locked,\n\ |
| 690 | t if it is locked by you, else a string of the name of the locker.") | 690 | t if it is locked by you, else a string of the name of the locker.") |
| 691 | (filename) | 691 | (filename) |