1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 00:32:12 -07:00

(mixal-mode): Use mode-require-final-newline.

This commit is contained in:
Richard M. Stallman 2004-12-31 14:54:29 +00:00
parent 44825abfc9
commit 6c11795edc

View file

@ -1303,8 +1303,9 @@ The converted character representation is stored in rAX."
(set (make-local-variable 'compile-command) (concat "mixasm -g "
buffer-file-name))
;; mixasm will do strange when there is no final newline,
;; let emacs ensure that it is always there
(set (make-local-variable 'require-final-newline) t))
;; so let Emacs ensure that it is always there
(set (make-local-variable 'require-final-newline)
mode-require-final-newline))
;;;###autoload
(add-to-list 'auto-mode-alist '("\\.mixal\\'" . mixal-mode))