aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasatake YAMATO2006-02-09 19:20:46 +0000
committerMasatake YAMATO2006-02-09 19:20:46 +0000
commitd2ea84be64e6ca1b82033f63ab7f3284515c173b (patch)
tree73ffc020f573fa7708ac33abdd3413dc149c4ae8
parentd9674f335bfb0ff92c8a2cfa7d4f04ffc1ca2b7e (diff)
downloademacs-d2ea84be64e6ca1b82033f63ab7f3284515c173b.tar.gz
emacs-d2ea84be64e6ca1b82033f63ab7f3284515c173b.zip
(dired-guess-shell-alist-default): Add .man as a `dired-man' target.
-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"))