Martin Buchholz <martin(a)xemacs.org> writes:
I still think there are better architected ways to do this, but we
can
pontificate forever, so let's just add Carsten's entry to the global
variable for now. Yoshiki, could you take care of this?
Oops. Stephen is right. Andreas already applied Carsten's
patch to XEmacs 21.2. And I also made mistake about .idl
suffix. Perhaps I was tired after taking a boring
class... :-) Here's the patch to change it to the version he
posted.
2000-10-25 Yoshiki Hayashi <yoshiki(a)xemacs.org>
* files.el (auto-mode-alist): Allow mixed case suffix for idlwave-mode.
Index: files.el
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/lisp/files.el,v
retrieving revision 1.27.2.27
diff -u -r1.27.2.27 files.el
--- files.el 2000/10/18 12:24:56 1.27.2.27
+++ files.el 2000/10/25 09:44:04
@@ -1173,7 +1173,7 @@
("\\.m\\(?:[mes]\\|an\\)\\'" . nroff-mode)
("\\.icn\\'" . icon-mode)
("\\.\\(?:[ckz]?sh\\|shar\\)\\'" . sh-mode)
- ("\\.pro\\'" . idlwave-mode)
+ ("\\.[Pp][Rr][Oo]\\'" . idlwave-mode)
;; #### Unix-specific!
("/\\.\\(?:bash_\\|z\\)?\\(profile\\|login\\|logout\\)\\'" . sh-mode)
("/\\.\\(?:[ckz]sh\\|bash\\|tcsh\\|es\\|xinit\\|startx\\)rc\\'" .
sh-mode)
--
Yoshiki Hayashi