diff options
| author | Paul Eggert | 2013-07-08 23:29:29 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-07-08 23:29:29 -0700 |
| commit | 1b6006a514b19f042560a14ac8fdb3985d065bbf (patch) | |
| tree | 47e90f0724e9d75f90d6ba46e137e5cd4bc37d72 | |
| parent | c28b9050d55c19317cfab3ff5f9d0cf749ef1ac2 (diff) | |
| download | emacs-1b6006a514b19f042560a14ac8fdb3985d065bbf.tar.gz emacs-1b6006a514b19f042560a14ac8fdb3985d065bbf.zip | |
* filelock.c: Fix comment to match code.
| -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 6e939f271d7..244663ad20a 100644 --- a/src/filelock.c +++ b/src/filelock.c | |||
| @@ -381,9 +381,9 @@ rename_lock_file (char const *old, char const *new, bool force) | |||
| 381 | #endif | 381 | #endif |
| 382 | } | 382 | } |
| 383 | 383 | ||
| 384 | /* Create the lock file FILE with contents CONTENTS. Return 0 if | 384 | /* Create the lock file LFNAME with contents LOCK_INFO_STR. Return 0 if |
| 385 | successful, an errno value on failure. If FORCE, remove any | 385 | successful, an errno value on failure. If FORCE, remove any |
| 386 | existing FILE if necessary. */ | 386 | existing LFNAME if necessary. */ |
| 387 | 387 | ||
| 388 | static int | 388 | static int |
| 389 | create_lock_file (char *lfname, char *lock_info_str, bool force) | 389 | create_lock_file (char *lfname, char *lock_info_str, bool force) |