From: Gerd Moellmann Date: Tue, 12 Oct 1999 14:53:08 +0000 (+0000) Subject: (auto-mode-alist): Add ps-mode for .eps and .ps, case insensitive. X-Git-Tag: emacs-pretest-21.0.90~6467 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6fdc7533ac2ccfea0999262dfd546fdb657b413d;p=emacs.git (auto-mode-alist): Add ps-mode for .eps and .ps, case insensitive. --- diff --git a/lisp/files.el b/lisp/files.el index ca6e7ec9f79..731f12339f9 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1379,7 +1379,8 @@ in that case, this function acts as if `enable-local-variables' were t." ("\\.smi$" . snmp-mode) ("\\.as2$" . snmpv2-mode) ("\\.mi2$" . snmpv2-mode) - ("\\.sm2$" . snmpv2-mode)) + ("\\.sm2$" . snmpv2-mode) + ("\\.[eE]?[pP][sS]$" . ps-mode)) "\ Alist of filename patterns vs corresponding major mode functions. Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL).