1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-03 20:24:29 +00:00

Add file system types cifs and usbdevfs. Allow special chars in file names.

This commit is contained in:
Lars Hansen 2006-02-06 10:06:56 +00:00
parent 689a2c278c
commit 3e54ab6cb0
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-02-06 Lars Hansen <larsh@soem.dk>
* generic-x.el (etc-fstab-generic-mode): Add file system types
cifs and usbdevfs. Allow special chars in file names.
2006-02-05 Jay Belanger <belanger@truman.edu>
Update copyright notices of the files in lisp/calc.

View File

@ -1706,6 +1706,8 @@ like an INI file. You can add this hook to `find-file-hook'."
"reiserfs"
"romfs"
"smbfs"
"cifs"
"usbdevfs"
"sysv"
"tmpfs"
"udf"
@ -1717,7 +1719,7 @@ like an INI file. You can add this hook to `find-file-hook'."
"swap"
"auto"
"ignore")
'(("^\\([/-A-Za-z0-9_]+\\)\\s-+\\([/-A-Za-z0-9_]+\\)"
'(("^\\([^# \t]+\\)\\s-+\\([^# \t]+\\)"
(1 font-lock-type-face t)
(2 font-lock-variable-name-face t)))
'("/etc/[v]*fstab\\'")
@ -1725,7 +1727,7 @@ like an INI file. You can add this hook to `find-file-hook'."
(function
(lambda ()
(setq imenu-generic-expression
'((nil "^\\([/-A-Za-z0-9_]+\\)\\s-+" 1))))))))
'((nil "^\\([^# \t]+\\)\\s-+" 1))))))))
;; From Jacques Duthen <jacques.duthen@sncf.fr>
(when (memq 'show-tabs-generic-mode generic-extras-enable-list)