Merge pull request #7 from UndeadKernel/asm-parenthesis-bug

Fix parenthesis mismatch.
This commit is contained in:
Henrik Lissner 2016-09-09 16:36:06 +02:00 committed by GitHub
commit 9f4bcf3bf2

View File

@ -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