mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-16 09:50:25 +00:00
Set the normal-erase-is-backspace variable from Customize
* lisp/simple.el (normal-erase-is-backspace): Always set the variable so that Customize is up-to-date (bug#49593).
This commit is contained in:
parent
6becc97433
commit
26da0b5ecb
@ -9535,9 +9535,9 @@ call `normal-erase-is-backspace-mode' (which see) instead."
|
||||
:set (lambda (symbol value)
|
||||
;; The fboundp is because of a problem with :set when
|
||||
;; dumping Emacs. It doesn't really matter.
|
||||
(if (fboundp 'normal-erase-is-backspace-mode)
|
||||
(normal-erase-is-backspace-mode (or value 0))
|
||||
(set-default symbol value))))
|
||||
(when (fboundp 'normal-erase-is-backspace-mode)
|
||||
(normal-erase-is-backspace-mode (or value 0)))
|
||||
(set-default symbol value)))
|
||||
|
||||
(defun normal-erase-is-backspace-setup-frame (&optional frame)
|
||||
"Set up `normal-erase-is-backspace-mode' on FRAME, if necessary."
|
||||
|
Loading…
Reference in New Issue
Block a user