diff options
author | Andreas Schwab <schwab@suse.de> | 1998-01-26 11:29:46 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-01-26 11:29:46 +0000 |
commit | 28d16ed35be96b3665e60c0eec1444c5f32f3165 (patch) | |
tree | 773b0d48e5291895ab7c70033fc7a7bcf2ae9468 /lisp/progmodes/asm-mode.el | |
parent | b8ba68e52bd2002eb086568b1938bb5e38408850 (diff) | |
download | emacs-28d16ed35be96b3665e60c0eec1444c5f32f3165.tar.gz |
Customized.
Diffstat (limited to 'lisp/progmodes/asm-mode.el')
-rw-r--r-- | lisp/progmodes/asm-mode.el | 10 |
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.") |