Function: tramp-handle-make-lock-file-name
tramp-handle-make-lock-file-name is a byte-compiled function defined
in tramp.el.gz.
Signature
(tramp-handle-make-lock-file-name FILE)
Documentation
Like make-lock-file-name for Tramp files.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-handle-make-lock-file-name (file)
"Like `make-lock-file-name' for Tramp files."
(and create-lockfiles
;; This variable has been introduced with Emacs 28.1.
(not (bound-and-true-p remote-file-name-inhibit-locks))
(tramp-run-real-handler 'make-lock-file-name (list file))))