diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2005-09-19 20:09:49 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2005-09-19 20:09:49 +0000 |
commit | 3523fd4b048f2a2d8af32f6433444e8ffbdb57e4 (patch) | |
tree | 371534014200c2ff545fa7872c86da7993ea6b4e /misc | |
parent | 1d412f682941c68ff36134efd4de2f18867ee1da (diff) | |
download | mdk-3523fd4b048f2a2d8af32f6433444e8ffbdb57e4.tar.gz mdk-3523fd4b048f2a2d8af32f6433444e8ffbdb57e4.tar.bz2 |
Remove obsolete -g option in mixasm invocation (fixes #14569)
Diffstat (limited to 'misc')
-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 |