aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2000-01-10 08:44:26 +0000
committerRichard M. Stallman2000-01-10 08:44:26 +0000
commit85400f54f536bd5f89e2bfa81a9cbe3028857b70 (patch)
tree256edcf26c5fc239564e1ca18a4a76e28c271bf4
parent4357341d9ec66eb7258b2c749b84ef35faaab39f (diff)
downloademacs-85400f54f536bd5f89e2bfa81a9cbe3028857b70.tar.gz
emacs-85400f54f536bd5f89e2bfa81a9cbe3028857b70.zip
(dired-guess-shell-alist-default):
Suggest xloadimage, which is free, not xv, which isn't.
-rw-r--r--lisp/dired-x.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index 035ca56f368..50cdb493dc1 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -968,7 +968,7 @@ dired."
968 '("\\.shar.Z$" "zcat * | unshar") 968 '("\\.shar.Z$" "zcat * | unshar")
969 '("\\.shar.g?z$" "gunzip -qc * | unshar") 969 '("\\.shar.g?z$" "gunzip -qc * | unshar")
970 970
971 '("\\.e?ps$" "ghostview" "xv" "lpr") 971 '("\\.e?ps$" "ghostview" "xloadimage" "lpr")
972 (list "\\.e?ps.g?z$" "gunzip -qc * | ghostview -" 972 (list "\\.e?ps.g?z$" "gunzip -qc * | ghostview -"
973 ;; Optional decompression. 973 ;; Optional decompression.
974 '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q"))) 974 '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q")))
@@ -991,11 +991,11 @@ dired."
991 '("\\.sh$" "sh") ; execute shell scripts 991 '("\\.sh$" "sh") ; execute shell scripts
992 '("\\.xbm$" "bitmap") ; view X11 bitmaps 992 '("\\.xbm$" "bitmap") ; view X11 bitmaps
993 '("\\.gp$" "gnuplot") 993 '("\\.gp$" "gnuplot")
994 '("\\.p[bgpn]m$" "xv") 994 '("\\.p[bgpn]m$" "xloadimage")
995 '("\\.gif$" "xv") ; view gif pictures 995 '("\\.gif$" "xloadimage") ; view gif pictures
996 '("\\.tif$" "xv") 996 '("\\.tif$" "xloadimage")
997 '("\\.png$" "xv") 997 '("\\.png$" "xloadimage")
998 '("\\.jpg$" "xv") 998 '("\\.jpg$" "xloadimage")
999 '("\\.fig$" "xfig") ; edit fig pictures 999 '("\\.fig$" "xfig") ; edit fig pictures
1000 '("\\.out$" "xgraph") ; for plotting purposes. 1000 '("\\.out$" "xgraph") ; for plotting purposes.
1001 '("\\.tex$" "latex" "tex") 1001 '("\\.tex$" "latex" "tex")