From: Chong Yidong Date: Tue, 5 Jun 2007 15:51:01 +0000 (+0000) Subject: (auto-mode-alist): Open `.asd' files in lisp-mode. X-Git-Tag: emacs-pretest-22.1.90~1425 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=726d9c5bd20726dbe25afba4a8890b2192ab57ac;p=emacs.git (auto-mode-alist): Open `.asd' files in lisp-mode. --- diff --git a/lisp/files.el b/lisp/files.el index 90451882945..5be738bd452 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1985,6 +1985,8 @@ since only a single case-insensitive search through the alist is made." ("[:/]_emacs\\'" . emacs-lisp-mode) ("/crontab\\.X*[0-9]+\\'" . shell-script-mode) ("\\.ml\\'" . lisp-mode) + ;; Common Lisp ASDF package system. + ("\\.asd\\'" . lisp-mode) ("\\.\\(asn\\|mib\\|smi\\)\\'" . snmp-mode) ("\\.\\(as\\|mi\\|sm\\)2\\'" . snmpv2-mode) ("\\.\\(diffs?\\|patch\\|rej\\)\\'" . diff-mode)