mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Remove some more references to pure space
* lisp/auth-source.el (read-passwd-map): * lisp/emacs-lisp/eldoc.el (eldoc-message-commands) (eldoc-last-data): Remove some references to pure space.
This commit is contained in:
parent
f818744cd4
commit
c729d224ca
2 changed files with 0 additions and 4 deletions
|
|
@ -2515,8 +2515,6 @@ Adapt also mode line."
|
||||||
(read-passwd--hide-password)))))
|
(read-passwd--hide-password)))))
|
||||||
|
|
||||||
(defvar read-passwd-map
|
(defvar read-passwd-map
|
||||||
;; BEWARE: `defconst' would purecopy it, breaking the sharing with
|
|
||||||
;; minibuffer-local-map along the way!
|
|
||||||
(let ((map (make-sparse-keymap)))
|
(let ((map (make-sparse-keymap)))
|
||||||
(set-keymap-parent map minibuffer-local-map)
|
(set-keymap-parent map minibuffer-local-map)
|
||||||
(define-key map "\C-u" #'delete-minibuffer-contents) ;bug#12570
|
(define-key map "\C-u" #'delete-minibuffer-contents) ;bug#12570
|
||||||
|
|
|
||||||
|
|
@ -154,7 +154,6 @@ this file since the obarray is initialized at load time.
|
||||||
Remember to keep it a prime number to improve hash performance.")
|
Remember to keep it a prime number to improve hash performance.")
|
||||||
|
|
||||||
(defvar eldoc-message-commands
|
(defvar eldoc-message-commands
|
||||||
;; Don't define as `defconst' since it would then go to (read-only) purespace.
|
|
||||||
(obarray-make eldoc-message-commands-table-size)
|
(obarray-make eldoc-message-commands-table-size)
|
||||||
"Commands after which it is appropriate to print in the echo area.
|
"Commands after which it is appropriate to print in the echo area.
|
||||||
ElDoc does not try to print function arglists, etc., after just any command,
|
ElDoc does not try to print function arglists, etc., after just any command,
|
||||||
|
|
@ -166,7 +165,6 @@ directly. Instead, use `eldoc-add-command' and `eldoc-remove-command'.")
|
||||||
|
|
||||||
;; Not a constant.
|
;; Not a constant.
|
||||||
(defvar eldoc-last-data (make-vector 3 nil)
|
(defvar eldoc-last-data (make-vector 3 nil)
|
||||||
;; Don't define as `defconst' since it would then go to (read-only) purespace.
|
|
||||||
"Bookkeeping; elements are as follows:
|
"Bookkeeping; elements are as follows:
|
||||||
0 - contains the last symbol read from the buffer.
|
0 - contains the last symbol read from the buffer.
|
||||||
1 - contains the string last displayed in the echo area for variables,
|
1 - contains the string last displayed in the echo area for variables,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue