diff options
Diffstat (limited to 'lisp/emacs-lock.el')
-rw-r--r-- | lisp/emacs-lock.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/emacs-lock.el b/lisp/emacs-lock.el index 0733c3326c9..1ff69cc7fc7 100644 --- a/lisp/emacs-lock.el +++ b/lisp/emacs-lock.el @@ -97,7 +97,10 @@ It can be one of the following values: exit -- Emacs cannot exit while the buffer is locked kill -- the buffer cannot be killed, but Emacs can exit as usual all -- the buffer is locked against both actions - nil -- the buffer is not locked") + nil -- the buffer is not locked + +See also `emacs-lock-unlockable-modes', which exempts buffers under +some major modes from being locked under some circumstances.") (put 'emacs-lock-mode 'permanent-local t) (defvar-local emacs-lock--old-mode nil @@ -202,7 +205,10 @@ When called from Elisp code, ARG can be any locking mode: kill -- the buffer cannot be killed, but Emacs can exit as usual all -- the buffer is locked against both actions -Other values are interpreted as usual." +Other values are interpreted as usual. + +See also `emacs-lock-unlockable-modes', which exempts buffers under +some major modes from being locked under some circumstances." :init-value nil :lighter ("" (emacs-lock--try-unlocking " locked:" " Locked:") |