comparison lisp/progmodes/asm-mode.el @ 31983:eb15bee6f5e7

(asm-mode): Don't gratuitously override the default for comment-column.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 29 Sep 2000 03:31:36 +0000
parents f26b378dc6a2
children 99a31f21f1c9
comparison
equal deleted inserted replaced
31982:ed0ed1c70495 31983:eb15bee6f5e7
140 (setq asm-code-level-empty-comment-pattern (concat "^[\t ]+" cs cs " *$")) 140 (setq asm-code-level-empty-comment-pattern (concat "^[\t ]+" cs cs " *$"))
141 (setq asm-flush-left-empty-comment-pattern (concat "^" cs cs cs " *$")) 141 (setq asm-flush-left-empty-comment-pattern (concat "^" cs cs cs " *$"))
142 ) 142 )
143 (make-local-variable 'comment-end) 143 (make-local-variable 'comment-end)
144 (setq comment-end "") 144 (setq comment-end "")
145 (make-local-variable 'comment-column)
146 (setq comment-column 32)
147 (setq fill-prefix "\t") 145 (setq fill-prefix "\t")
148 (run-hooks 'asm-mode-hook)) 146 (run-hooks 'asm-mode-hook))
149 147
150 (defun asm-colon () 148 (defun asm-colon ()
151 "Insert a colon; if it follows a label, delete the label's indentation." 149 "Insert a colon; if it follows a label, delete the label's indentation."