aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-01-09 17:19:23 +0000
committerGerd Moellmann2000-01-09 17:19:23 +0000
commitb950abb18592326edcae27979aa5c86fb53d3565 (patch)
treec755d3aff39f7073e674c2c490012460fa232447
parent3c708e9898962614b8b822c4188df6bd729207b2 (diff)
downloademacs-b950abb18592326edcae27979aa5c86fb53d3565.tar.gz
emacs-b950abb18592326edcae27979aa5c86fb53d3565.zip
(dired-guess-shell-alist-default): Suggest xv
for .png files.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/dired-x.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a21442427af..e9d6dfa83d6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12000-01-09 Stephen Eglen <stephen@gnu.org>
2
3 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
4 for .png files.
5
12000-01-09 Per Abrahamsen <abraham@dina.kvl.dk> 62000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
2 7
3 * cus-edit.el (custom-hook-convert-widget): Fix comment. 8 * cus-edit.el (custom-hook-convert-widget): Fix comment.
diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index 808dc3b5dc8..035ca56f368 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -994,6 +994,7 @@ dired."
994 '("\\.p[bgpn]m$" "xv") 994 '("\\.p[bgpn]m$" "xv")
995 '("\\.gif$" "xv") ; view gif pictures 995 '("\\.gif$" "xv") ; view gif pictures
996 '("\\.tif$" "xv") 996 '("\\.tif$" "xv")
997 '("\\.png$" "xv")
997 '("\\.jpg$" "xv") 998 '("\\.jpg$" "xv")
998 '("\\.fig$" "xfig") ; edit fig pictures 999 '("\\.fig$" "xfig") ; edit fig pictures
999 '("\\.out$" "xgraph") ; for plotting purposes. 1000 '("\\.out$" "xgraph") ; for plotting purposes.