aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/dired-x.el4
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8ed1d26e7c2..e5cc3af773c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12006-02-09 Masatake YAMATO <jet@gyve.org> 12006-02-09 Masatake YAMATO <jet@gyve.org>
2 2
3 * dired-x.el (dired-guess-shell-alist-default): Add .man as
4 a `dired-man' target.
5
3 * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start 6 * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
4 boundary of symbols. 7 boundary of symbols.
5 8
diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index da9fc284801..e207c60502d 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -1027,11 +1027,11 @@ dired."
1027 " " dired-guess-shell-znew-switches)) 1027 " " dired-guess-shell-znew-switches))
1028 1028
1029 ;; The following four extensions are useful with dired-man ("N" key) 1029 ;; The following four extensions are useful with dired-man ("N" key)
1030 (list "\\.[0-9]$" '(progn (require 'man) 1030 (list "\\.\\(?:[0-9]\\|man\\)$" '(progn (require 'man)
1031 (if (Man-support-local-filenames) 1031 (if (Man-support-local-filenames)
1032 "man -l" 1032 "man -l"
1033 "cat * | tbl | nroff -man -h"))) 1033 "cat * | tbl | nroff -man -h")))
1034 (list "\\.[0-9]\\.g?z$" '(progn (require 'man) 1034 (list "\\.\\(?:[0-9]\\|man\\)\\.g?z$" '(progn (require 'man)
1035 (if (Man-support-local-filenames) 1035 (if (Man-support-local-filenames)
1036 "man -l" 1036 "man -l"
1037 "gunzip -qc * | tbl | nroff -man -h")) 1037 "gunzip -qc * | tbl | nroff -man -h"))