Mercurial > hg > xemacs-beta
comparison lisp/files.el @ 792:4e83fdb13eb9
[xemacs-hg @ 2002-03-23 05:08:47 by youngs]
2002-03-20 John Paul Wallington <jpw@shootybangbang.com>
* menubar-items.el (list-all-buffers): New function.
(list-all-buffers-function): New customizable variable.
(default-menubar): Replace list-buffers with list-all-buffers.
2002-03-04 Simon Josefsson <jas@extundo.com>
* files.el (auto-mode-alist): Move Sieve to a place where the
comment is more appropriate for it.
author | youngs |
---|---|
date | Sat, 23 Mar 2002 05:08:52 +0000 |
parents | 79940b592197 |
children | e38acbeb1cae |
comparison
equal
deleted
inserted
replaced
791:7b1f30330a19 | 792:4e83fdb13eb9 |
---|---|
1258 ("\\.mss\\'" . scribe-mode) | 1258 ("\\.mss\\'" . scribe-mode) |
1259 ("\\.m\\(?:[mes]\\|an\\)\\'" . nroff-mode) | 1259 ("\\.m\\(?:[mes]\\|an\\)\\'" . nroff-mode) |
1260 ("\\.icn\\'" . icon-mode) | 1260 ("\\.icn\\'" . icon-mode) |
1261 ("\\.\\(?:[ckz]?sh\\|shar\\)\\'" . sh-mode) | 1261 ("\\.\\(?:[ckz]?sh\\|shar\\)\\'" . sh-mode) |
1262 ("\\.[Pp][Rr][Oo]\\'" . idlwave-mode) | 1262 ("\\.[Pp][Rr][Oo]\\'" . idlwave-mode) |
1263 ("\\.si\\(v\\|eve\\)\\'" . sieve-mode) | |
1263 ;; #### Unix-specific! | 1264 ;; #### Unix-specific! |
1264 ("/\\.\\(?:bash_\\|z\\)?\\(profile\\|login\\|logout\\)\\'" . sh-mode) | 1265 ("/\\.\\(?:bash_\\|z\\)?\\(profile\\|login\\|logout\\)\\'" . sh-mode) |
1265 ("/\\.\\(?:[ckz]sh\\|bash\\|tcsh\\|es\\|xinit\\|startx\\)rc\\'" . sh-mode) | 1266 ("/\\.\\(?:[ckz]sh\\|bash\\|tcsh\\|es\\|xinit\\|startx\\)rc\\'" . sh-mode) |
1266 ("/\\.\\(?:[kz]shenv\\|xsession\\)\\'" . sh-mode) | 1267 ("/\\.\\(?:[kz]shenv\\|xsession\\)\\'" . sh-mode) |
1267 ("\\.m?spec$" .sh-mode) | 1268 ("\\.m?spec$" .sh-mode) |
1304 ("\\(GNU\\)?[Mm]akefile\\(\\.\\|\\'\\)" . makefile-mode) | 1305 ("\\(GNU\\)?[Mm]akefile\\(\\.\\|\\'\\)" . makefile-mode) |
1305 ("[./\\]X\\(defaults\\|environment\\|resources\\|modmap\\)\\'" . xrdb-mode) | 1306 ("[./\\]X\\(defaults\\|environment\\|resources\\|modmap\\)\\'" . xrdb-mode) |
1306 ;; #### The following three are Unix-specific (but do we care?) | 1307 ;; #### The following three are Unix-specific (but do we care?) |
1307 ("/app-defaults/" . xrdb-mode) | 1308 ("/app-defaults/" . xrdb-mode) |
1308 ("\\.[^/]*wm2?\\(?:rc\\)?\\'" . winmgr-mode) | 1309 ("\\.[^/]*wm2?\\(?:rc\\)?\\'" . winmgr-mode) |
1309 ("\\.si\\(v\\|eve\\)\\'" . sieve-mode) | |
1310 ("\\.\\(?:jpe?g\\|JPE?G\\|png\\|PNG\\|gif\\|GIF\\|tiff?\\|TIFF?\\)\\'" . image-mode) | 1310 ("\\.\\(?:jpe?g\\|JPE?G\\|png\\|PNG\\|gif\\|GIF\\|tiff?\\|TIFF?\\)\\'" . image-mode) |
1311 ) | 1311 ) |
1312 "Alist of filename patterns vs. corresponding major mode functions. | 1312 "Alist of filename patterns vs. corresponding major mode functions. |
1313 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL). | 1313 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL). |
1314 \(NON-NIL stands for anything that is not nil; the value does not matter.) | 1314 \(NON-NIL stands for anything that is not nil; the value does not matter.) |