Mercurial > emacs
changeset 11397:eba8070796a4
(set-auto-mode) [WINDOWSNT]: Match insensitive to case.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 12 Apr 1995 03:10:46 +0000 |
parents | 9c92e5ea420a |
children | 2fdc054fa4e3 |
files | lisp/files.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/files.el Wed Apr 12 03:09:44 1995 +0000 +++ b/lisp/files.el Wed Apr 12 03:10:46 1995 +0000 @@ -1006,7 +1006,8 @@ (let ((alist auto-mode-alist) (mode nil)) ;; Find first matching alist entry. - (let ((case-fold-search (eq system-type 'vax-vms))) + (let ((case-fold-search + (memq system-type '(vax-vms windows-nt)))) (while (and (not mode) alist) (if (string-match (car (car alist)) name) (if (and (consp (cdr (car alist)))