branch: elpa/devil commit 1cee55eaa3aa2b5656f3d12b2dbcf2141c760dfa Author: Susam Pal <su...@susam.net> Commit: Susam Pal <su...@susam.net>
Use sharp-quotes consistently for function names --- devil.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devil.el b/devil.el index 5440139b6d..65ab15200a 100644 --- a/devil.el +++ b/devil.el @@ -172,8 +172,8 @@ occurrence `devil-key' is inserted into the buffer." "Add key bindings to keymaps for Isearch and universal argument." (devil--log "Adding extra key bindings") (setq devil--saved-keys (devil--original-keys-to-be-saved)) - (define-key isearch-mode-map (kbd devil-key) 'devil) - (define-key universal-argument-map (kbd "u") 'universal-argument-more)) + (define-key isearch-mode-map (kbd devil-key) #'devil) + (define-key universal-argument-map (kbd "u") #'universal-argument-more)) (defun devil-remove-extra-keys () "Remove Devil key bindings from Isearch and universal argument."