diff options
| author | Lars Hansen | 2006-02-06 10:06:56 +0000 |
|---|---|---|
| committer | Lars Hansen | 2006-02-06 10:06:56 +0000 |
| commit | 3e54ab6cb03df446199491b992ca2d4de49088dd (patch) | |
| tree | 9f98b081a96b1276945446d509683f94ec6b9666 | |
| parent | 689a2c278c14b1885bd95327c4fab8c64073c338 (diff) | |
| download | emacs-3e54ab6cb03df446199491b992ca2d4de49088dd.tar.gz emacs-3e54ab6cb03df446199491b992ca2d4de49088dd.zip | |
Add file system types cifs and usbdevfs. Allow special chars in file names.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/generic-x.el | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ae98b5f389c..42ae13bef6c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-02-06 Lars Hansen <larsh@soem.dk> | ||
| 2 | |||
| 3 | * generic-x.el (etc-fstab-generic-mode): Add file system types | ||
| 4 | cifs and usbdevfs. Allow special chars in file names. | ||
| 5 | |||
| 1 | 2006-02-05 Jay Belanger <belanger@truman.edu> | 6 | 2006-02-05 Jay Belanger <belanger@truman.edu> |
| 2 | 7 | ||
| 3 | Update copyright notices of the files in lisp/calc. | 8 | Update copyright notices of the files in lisp/calc. |
diff --git a/lisp/generic-x.el b/lisp/generic-x.el index d6f56cfc76c..4d4e187146d 100644 --- a/lisp/generic-x.el +++ b/lisp/generic-x.el | |||
| @@ -1706,6 +1706,8 @@ like an INI file. You can add this hook to `find-file-hook'." | |||
| 1706 | "reiserfs" | 1706 | "reiserfs" |
| 1707 | "romfs" | 1707 | "romfs" |
| 1708 | "smbfs" | 1708 | "smbfs" |
| 1709 | "cifs" | ||
| 1710 | "usbdevfs" | ||
| 1709 | "sysv" | 1711 | "sysv" |
| 1710 | "tmpfs" | 1712 | "tmpfs" |
| 1711 | "udf" | 1713 | "udf" |
| @@ -1717,7 +1719,7 @@ like an INI file. You can add this hook to `find-file-hook'." | |||
| 1717 | "swap" | 1719 | "swap" |
| 1718 | "auto" | 1720 | "auto" |
| 1719 | "ignore") | 1721 | "ignore") |
| 1720 | '(("^\\([/-A-Za-z0-9_]+\\)\\s-+\\([/-A-Za-z0-9_]+\\)" | 1722 | '(("^\\([^# \t]+\\)\\s-+\\([^# \t]+\\)" |
| 1721 | (1 font-lock-type-face t) | 1723 | (1 font-lock-type-face t) |
| 1722 | (2 font-lock-variable-name-face t))) | 1724 | (2 font-lock-variable-name-face t))) |
| 1723 | '("/etc/[v]*fstab\\'") | 1725 | '("/etc/[v]*fstab\\'") |
| @@ -1725,7 +1727,7 @@ like an INI file. You can add this hook to `find-file-hook'." | |||
| 1725 | (function | 1727 | (function |
| 1726 | (lambda () | 1728 | (lambda () |
| 1727 | (setq imenu-generic-expression | 1729 | (setq imenu-generic-expression |
| 1728 | '((nil "^\\([/-A-Za-z0-9_]+\\)\\s-+" 1)))))))) | 1730 | '((nil "^\\([^# \t]+\\)\\s-+" 1)))))))) |
| 1729 | 1731 | ||
| 1730 | ;; From Jacques Duthen <jacques.duthen@sncf.fr> | 1732 | ;; From Jacques Duthen <jacques.duthen@sncf.fr> |
| 1731 | (when (memq 'show-tabs-generic-mode generic-extras-enable-list) | 1733 | (when (memq 'show-tabs-generic-mode generic-extras-enable-list) |