diff options
author | Glenn Morris <rgm@gnu.org> | 2010-09-23 20:06:33 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-09-23 20:06:33 -0700 |
commit | 5e339ee2a32905ae87296dfb01ef957cfa04a747 (patch) | |
tree | 0f88b53b4b762526ce66d1b8a775ebf2bab52fc0 /lisp/progmodes/mixal-mode.el | |
parent | 9a7cfdb82a73229b743e480d44e8f240139f6c6f (diff) | |
download | emacs-5e339ee2a32905ae87296dfb01ef957cfa04a747.tar.gz |
Move some autoloaded auto-mode-alist entries to files.el.
* image-mode.el, progmodes/compile.el, progmodes/gud.el:
* progmodes/mixal-mode.el, textmodes/bibtex-style.el:
* textmodes/css-mode.el, textmodes/dns-mode.el:
Move autoloaded auto-mode-alist entries to files.el.
* files.el (auto-mode-alist): Move entries here.
Diffstat (limited to 'lisp/progmodes/mixal-mode.el')
-rw-r--r-- | lisp/progmodes/mixal-mode.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/progmodes/mixal-mode.el b/lisp/progmodes/mixal-mode.el index 94af563d88f..f2a7aa045e4 100644 --- a/lisp/progmodes/mixal-mode.el +++ b/lisp/progmodes/mixal-mode.el @@ -125,7 +125,7 @@ value.") (defvar mixal-operation-codes-alist ;; FIXME: the codes FADD, FSUB, FMUL, FDIV, JRAD, and FCMP were in ;; mixal-operation-codes but not here. They should probably be added here. - ;; + ;; ;; We used to define this with a backquote and subexps like ,(+ 8 3) for ;; better clarity, but the resulting code was too big and caused the ;; byte-compiler to eat up all the stack space. Even using @@ -1123,9 +1123,6 @@ Assumes that file has been compiled with debugging support." (set (make-local-variable 'require-final-newline) mode-require-final-newline)) -;;;###autoload -(add-to-list 'auto-mode-alist '("\\.mixal\\'" . mixal-mode)) - (provide 'mixal-mode) ;; arch-tag: be7c128a-bf61-4951-a90e-9398267ce3f3 |