branch: externals/a68-mode commit 4d11435a64558bb0d7b63eade755e1f904eefdd4 Author: Omar Polo <o...@omarpolo.com> Commit: Omar Polo <o...@omarpolo.com>
hash-quote function symbol to aid the byte compiler --- algol-mode.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/algol-mode.el b/algol-mode.el index f08f8809a8..826de014a8 100644 --- a/algol-mode.el +++ b/algol-mode.el @@ -39,9 +39,9 @@ (defvar a68-mode-map (let ((map (make-keymap))) - (define-key map "\C-j" 'newline-and-indent) - (define-key map "\r" 'electric-a68-terminate-line) - (define-key map "\t" 'electric-a68-tab) + (define-key map "\C-j" #'newline-and-indent) + (define-key map "\r" #'electric-a68-terminate-line) + (define-key map "\t" #'electric-a68-tab) map) "Keymap for Algol 68 major mode.")