summaryrefslogtreecommitdiff
path: root/lisp/progmodes/asm-mode.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes/asm-mode.el')
-rw-r--r--lisp/progmodes/asm-mode.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/progmodes/asm-mode.el b/lisp/progmodes/asm-mode.el
index a9132afd157..ef57e339e63 100644
--- a/lisp/progmodes/asm-mode.el
+++ b/lisp/progmodes/asm-mode.el
@@ -49,8 +49,14 @@
;;; Code:
-(defvar asm-comment-char ?;
- "*The comment-start character assumed by Asm mode.")
+(defgroup asm nil
+ "Mode for editing assembler code."
+ :group 'languages)
+
+(defcustom asm-comment-char ?;
+ "*The comment-start character assumed by Asm mode."
+ :type 'character
+ :group 'asm)
(defvar asm-mode-syntax-table nil
"Syntax table used while in Asm mode.")