diff options
-rw-r--r-- | misc/mixal-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/mixal-mode.el b/misc/mixal-mode.el index 32ad41d..4782206 100644 --- a/misc/mixal-mode.el +++ b/misc/mixal-mode.el @@ -1,6 +1,6 @@ ;;; mixal-mode.el --- Major mode for the mix asm language. -;; Copyright (C) 2003 Free Software Foundation +;; Copyright (C) 2003, 2005 Free Software Foundation ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as @@ -1300,7 +1300,7 @@ The converted character representation is stored in rAX." (set (make-local-variable 'font-lock-defaults) '(mixal-font-lock-keywords)) ; might add an indent function in the future ; (set (make-local-variable 'indent-line-function) 'mixal-indent-line) - (set (make-local-variable 'compile-command) (concat "mixasm -g " + (set (make-local-variable 'compile-command) (concat "mixasm " buffer-file-name)) ;; mixasm will do strange when there is no final newline, ;; let emacs ensure that it is always there |