diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-09-23 23:38:11 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-09-23 23:38:11 +0000 |
commit | 1ce965febfda5798a9eba2c9b903d6fdfc567d29 (patch) | |
tree | 52a73b60e3756e5ac993308ad01bf0f0f44ffccf /lisp/progmodes/asm-mode.el | |
parent | 69edcf7e99db16e4f74a43397baa39b540c15d52 (diff) | |
download | emacs-1ce965febfda5798a9eba2c9b903d6fdfc567d29.tar.gz |
(asm-mode): Doc fix.
(asm-comment-char): Escape literal semicolon.
Diffstat (limited to 'lisp/progmodes/asm-mode.el')
-rw-r--r-- | lisp/progmodes/asm-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/asm-mode.el b/lisp/progmodes/asm-mode.el index ef57e339e63..7a2d74343fa 100644 --- a/lisp/progmodes/asm-mode.el +++ b/lisp/progmodes/asm-mode.el @@ -53,7 +53,7 @@ "Mode for editing assembler code." :group 'languages) -(defcustom asm-comment-char ?; +(defcustom asm-comment-char ?\; "*The comment-start character assumed by Asm mode." :type 'character :group 'asm) @@ -100,7 +100,7 @@ Features a private abbrev table and the following bindings: \\[asm-comment]\tsmart placement of assembler comments. The character used for making comments is set by the variable -`asm-comment-char' (which defaults to `?;'). +`asm-comment-char' (which defaults to `?\\;'). Alternatively, you may set this variable in `asm-mode-set-comment-hook', which is called near the beginning of mode initialization. |