Function: userlock--handle-unlock-error

userlock--handle-unlock-error is an autoloaded and byte-compiled function defined in userlock.el.gz.

Signature

(userlock--handle-unlock-error ERROR)

Documentation

Report an ERROR that occurred while unlocking a file.

Source Code

;; Defined in /usr/src/emacs/lisp/userlock.el.gz
;;;###autoload
(defun userlock--handle-unlock-error (error)
  "Report an ERROR that occurred while unlocking a file."
  (when create-lockfiles
    (display-warning
     '(unlock-file)
     ;; There is no need to explain that this is an unlock error because
     ;; ERROR is a `file-error' condition, which explains this.
     (message "%s, ignored" (error-message-string error))
     :warning)))