mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-24 10:38:38 +00:00
Fix error preloading bindings.el.
lisp/bindings.el (search-map): Fix last change: don't use 'kbd' in bindings.el, since it is not yet loaded when bindings.el is preloaded.
This commit is contained in:
parent
5d977b968c
commit
3e517d349b
@ -1,3 +1,9 @@
|
||||
2014-11-14 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* bindings.el (search-map): Fix last change: don't use 'kbd' in
|
||||
bindings.el, since it is not yet loaded when bindings.el is
|
||||
preloaded.
|
||||
|
||||
2014-11-14 Fabián Ezequiel Gallina <fgallina@gnu.org>
|
||||
|
||||
* progmodes/python.el (python-shell-completion-get-completions):
|
||||
|
@ -925,15 +925,15 @@ if `inhibit-field-text-motion' is non-nil."
|
||||
"Keymap for search related commands.")
|
||||
(define-key esc-map "s" search-map)
|
||||
|
||||
(define-key search-map "o" 'occur)
|
||||
(define-key search-map (kbd "M-s") 'eww-search-words)
|
||||
(define-key search-map "hr" 'highlight-regexp)
|
||||
(define-key search-map "hp" 'highlight-phrase)
|
||||
(define-key search-map "hl" 'highlight-lines-matching-regexp)
|
||||
(define-key search-map "h." 'highlight-symbol-at-point)
|
||||
(define-key search-map "hu" 'unhighlight-regexp)
|
||||
(define-key search-map "hf" 'hi-lock-find-patterns)
|
||||
(define-key search-map "hw" 'hi-lock-write-interactive-patterns)
|
||||
(define-key search-map "o" 'occur)
|
||||
(define-key search-map "\M-s" 'eww-search-words)
|
||||
(define-key search-map "hr" 'highlight-regexp)
|
||||
(define-key search-map "hp" 'highlight-phrase)
|
||||
(define-key search-map "hl" 'highlight-lines-matching-regexp)
|
||||
(define-key search-map "h." 'highlight-symbol-at-point)
|
||||
(define-key search-map "hu" 'unhighlight-regexp)
|
||||
(define-key search-map "hf" 'hi-lock-find-patterns)
|
||||
(define-key search-map "hw" 'hi-lock-write-interactive-patterns)
|
||||
|
||||
;;(defun function-key-error ()
|
||||
;; (interactive)
|
||||
|
Loading…
Reference in New Issue
Block a user