branch: elpa/nasm-mode commit a715d4e33cc0ed512d5a66b2a2257bd46c746151 Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Use sharp quote in call-interactively. --- nasm-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nasm-mode.el b/nasm-mode.el index 60b6526..053cda9 100644 --- a/nasm-mode.el +++ b/nasm-mode.el @@ -451,7 +451,7 @@ (defun nasm-colon () "Insert a colon and convert the current line into a label." (interactive) - (call-interactively 'self-insert-command) + (call-interactively #'self-insert-command) (nasm-indent-line)) (defmacro nasm--opt (keywords)