From b04eb04cfd84d0a9c80f812de0f0e20f7362ddf8 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Fri, 9 Sep 2016 12:57:49 +0200 Subject: [PATCH] Fix parenthesis mismatch. --- modules/module-asm.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/module-asm.el b/modules/module-asm.el index 51cef1940..e3d678e28 100644 --- a/modules/module-asm.el +++ b/modules/module-asm.el @@ -14,7 +14,7 @@ (set-syntax-table (make-syntax-table asm-mode-syntax-table)) (modify-syntax-entry asm-comment-char "< b") ;; Fix one level comments. - (set (make-local-variable #'comment-start) (string asm-comment-char))) + (set (make-local-variable #'comment-start) (string asm-comment-char)))) (provide 'module-asm) ;;; module-asm.el ends here