]> git.eshelyaron.com Git - emacs.git/commitdiff
(asm-mode): Doc fix.
authorKarl Heuer <kwzh@gnu.org>
Wed, 23 Sep 1998 23:38:11 +0000 (23:38 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 23 Sep 1998 23:38:11 +0000 (23:38 +0000)
(asm-comment-char): Escape literal semicolon.

lisp/progmodes/asm-mode.el

index ef57e339e63a4af6743e49f37e6d6c144e6764ae..7a2d74343fa575251c46c0e5f86cb08d9bedb5fa 100644 (file)
@@ -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.