From c5b31142c707e93fa437b8e7b0f63f1bd1b903c9 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 15 Sep 1994 21:33:54 +0000 Subject: [PATCH] (auto-insert-alist): Add entries for C++. (insert-auto-insert-files): Do case-sensitive match except on vms. --- lisp/autoinsert.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index 9851ded2cdb..9851cdee31a 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el @@ -55,6 +55,9 @@ (defvar auto-insert-alist '(("\\.tex$" . "tex-insert.tex") ("\\.c$" . "c-insert.c") ("\\.h$" . "h-insert.c") + ("\\.cc$" . "c-insert.cc") + ("\\.C$" . "c-insert.cc") + ("\\.H$" . "h-insert.cc") ("[Mm]akefile" . "makefile.inc") ("\\.bib$" . "tex-insert.tex")) "A list specifying text to insert by default into a new file. @@ -75,10 +78,11 @@ Matches the visited file name against the elements of `auto-insert-alist'." (insert-file nil)) ;; find first matching alist entry - (while (and (not insert-file) alist) + (let ((case-fold-search (eq system-type 'vax-vms))) + (while (and (not insert-file) alist) (if (string-match (car (car alist)) name) (setq insert-file (cdr (car alist))) - (setq alist (cdr alist)))) + (setq alist (cdr alist))))) ;; Now, if we found an appropriate insert file, insert it (if insert-file -- 2.39.5