diff options
author | Po Lu <luangruo@yahoo.com> | 2022-01-29 20:37:24 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-01-29 20:37:24 +0800 |
commit | 04bba4a28f959cb202e7fb993b619c7358084ec3 (patch) | |
tree | 26e188f9b955b72837a3679b9d5896fea6f6702b /src/filelock.c | |
parent | a85e9d76414123a0cdd547edaf87de97436b1f46 (diff) | |
parent | 611736f3bc5d9f410adef4cc175c7f9b1c015f2c (diff) | |
download | emacs-04bba4a28f959cb202e7fb993b619c7358084ec3.tar.gz emacs-04bba4a28f959cb202e7fb993b619c7358084ec3.tar.bz2 emacs-04bba4a28f959cb202e7fb993b619c7358084ec3.zip |
Merge from origin/emacs-28
611736f3bc Remove debug logging
ddba3c3dba Fix error in filelock.c
# Conflicts:
# src/filelock.c
Diffstat (limited to 'src/filelock.c')
-rw-r--r-- | src/filelock.c | 74 |
1 files changed, 39 insertions, 35 deletions
diff --git a/src/filelock.c b/src/filelock.c index eb8d9ab5e01..7dfdd5ddec7 100644 --- a/src/filelock.c +++ b/src/filelock.c @@ -658,6 +658,7 @@ make_lock_file_name (Lisp_Object fn) static Lisp_Object lock_file (Lisp_Object fn) { + char *lfname = NULL; lock_info_type lock_info; /* Don't do locking while dumping Emacs. @@ -666,47 +667,46 @@ lock_file (Lisp_Object fn) if (will_dump_p ()) return Qnil; - /* If the file name has special constructs in it, - call the corresponding file name handler. */ - Lisp_Object handler; - handler = Ffind_file_name_handler (fn, Qlock_file); - if (!NILP (handler)) + if (create_lockfiles) { - return call2 (handler, Qlock_file, fn); + /* Create the name of the lock-file for file fn */ + Lisp_Object lock_filename = make_lock_file_name (fn); + if (NILP (lock_filename)) + return Qnil; + lfname = SSDATA (ENCODE_FILE (lock_filename)); } - Lisp_Object lock_filename = make_lock_file_name (fn); - if (NILP (lock_filename)) - return Qnil; - char *lfname = SSDATA (ENCODE_FILE (lock_filename)); - /* See if this file is visited and has changed on disk since it was visited. */ Lisp_Object subject_buf = get_truename_buffer (fn); if (!NILP (subject_buf) && NILP (Fverify_visited_file_modtime (subject_buf)) && !NILP (Ffile_exists_p (fn)) - && current_lock_owner (NULL, lfname) != I_OWN_IT) + && !(lfname && (current_lock_owner (NULL, lfname) != I_OWN_IT))) call1 (intern ("userlock--ask-user-about-supersession-threat"), fn); - /* Try to lock the lock. FIXME: This ignores errors when - lock_if_free returns an errno value. */ - if (lock_if_free (&lock_info, lfname) == ANOTHER_OWNS_IT) + /* Don't do locking if the user has opted out. */ + if (lfname) { - /* Someone else has the lock. Consider breaking it. */ - Lisp_Object attack; - char *dot = lock_info.dot; - ptrdiff_t pidlen = lock_info.colon - (dot + 1); - static char const replacement[] = " (pid "; - int replacementlen = sizeof replacement - 1; - memmove (dot + replacementlen, dot + 1, pidlen); - strcpy (dot + replacementlen + pidlen, ")"); - memcpy (dot, replacement, replacementlen); - attack = call2 (intern ("ask-user-about-lock"), fn, - build_string (lock_info.user)); - /* Take the lock if the user said so. */ - if (!NILP (attack)) - lock_file_1 (lfname, 1); + /* Try to lock the lock. FIXME: This ignores errors when + lock_if_free returns a positive errno value. */ + if (lock_if_free (&lock_info, lfname) == ANOTHER_OWNS_IT) + { + /* Someone else has the lock. Consider breaking it. */ + Lisp_Object attack; + char *dot = lock_info.dot; + ptrdiff_t pidlen = lock_info.colon - (dot + 1); + static char const replacement[] = " (pid "; + int replacementlen = sizeof replacement - 1; + memmove (dot + replacementlen, dot + 1, pidlen); + strcpy (dot + replacementlen + pidlen, ")"); + memcpy (dot, replacement, replacementlen); + attack = call2 (intern ("ask-user-about-lock"), fn, + build_string (lock_info.user)); + /* Take the lock if the user said so. */ + if (!NILP (attack)) + lock_file_1 (lfname, 1); + } } return Qnil; } @@ -760,12 +760,16 @@ If the option `create-lockfiles' is nil, this does nothing. */) (Lisp_Object file) { #ifndef MSDOS - /* Don't do locking if the user has opted out. */ - if (create_lockfiles) - { - CHECK_STRING (file); - lock_file (file); - } + CHECK_STRING (file); + + /* If the file name has special constructs in it, + call the corresponding file name handler. */ + Lisp_Object handler; + handler = Ffind_file_name_handler (file, Qlock_file); + if (!NILP (handler)) + return call2 (handler, Qlock_file, file); + + lock_file (file); #endif /* MSDOS */ return Qnil; } |