]> git.eshelyaron.com Git - emacs.git/commitdiff
(dired-view-command-alist): Variable deleted.
authorRichard M. Stallman <rms@gnu.org>
Sat, 1 Jan 2005 14:20:10 +0000 (14:20 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 1 Jan 2005 14:20:10 +0000 (14:20 +0000)
(dired-view-file, dired-mouse-find-file-other-window):
Delete the code to use it.

lisp/ChangeLog
lisp/dired.el

index 8c84b370b49bfc5ea082133d73b6e69f88f21da6..d30176d199206a0ee55846fddaaf8e611db4ec47 100644 (file)
@@ -1,3 +1,14 @@
+2005-01-01  Richard M. Stallman  <rms@gnu.org>
+
+       * cus-face.el (custom-face-attributes): Fix :help-echo strings
+       for :foreground and :background.
+
+2004-12-31  Richard M. Stallman  <rms@gnu.org>
+
+       * dired.el (dired-view-command-alist): Variable deleted.
+       (dired-view-file, dired-mouse-find-file-other-window): 
+       Delete the code to use it.
+
 2005-01-01  Kim F. Storm  <storm@cua.dk>
 
        * image.el (insert-sliced-image): Use t for line-height property.
index 037bf282eda5b30a329784b7f9230744cd7adea9..0341214a98e1dd4f3f21a387f8e67459aab12055 100644 (file)
@@ -200,22 +200,6 @@ with the buffer narrowed to the listing."
 ;; Note this can't simply be run inside function `dired-ls' as the hook
 ;; functions probably depend on the dired-subdir-alist to be OK.
 
-;; Fixme: This should use mailcap.
-(defcustom dired-view-command-alist
-  '(("\\.\\(ps\\|ps_pages\\|eps\\)\\'" . "gv %s")
-    ("\\.pdf\\'" . "xpdf %s")
-    ;; ("\\.pod\\'" . "perldoc %s")
-    ("\\.\\(jpe?g\\|gif\\|png\\)\\'" . "eog %s")
-    ("\\.dvi\\'" . "xdvi %s"))
-  "Alist specifying how to view special types of files.
-Each element has the form (REGEXP . SHELL-COMMAND).
-When the file name matches REGEXP, `dired-view-file'
-invokes SHELL-COMMAND to view the file, processing it through `format'.
-Use `%s' in SHELL-COMMAND to specify where to put the file name."
-  :group 'dired
-  :type '(alist :key-type regexp :value-type string)
-  :version "21.4")
-
 ;; Internal variables
 
 (defvar dired-marker-char ?*           ; the answer is 42
@@ -1666,41 +1650,20 @@ Creates a buffer if necessary."
            (progn
              (select-window window)
              (dired-other-window file)))
-      (let (cmd)
-       ;; Look for some other way to view a certain file.
-       (dolist (elt dired-view-command-alist)
-         (if (string-match (car elt) file)
-             (setq cmd (cdr elt))))
-       (if cmd
-           (call-process shell-file-name nil 0 nil
-                         "-c"
-                         (concat (format cmd (shell-quote-argument file))
-                                 " &"))
-         (select-window window)
-         (find-file-other-window (file-name-sans-versions file t)))))))
+      (select-window window)
+      (find-file-other-window (file-name-sans-versions file t)))))
 
 (defun dired-view-file ()
   "In Dired, examine a file in view mode, returning to dired when done.
 When file is a directory, show it in this buffer if it is inserted.
-Some kinds of files are displayed using external viewer programs;
-see `dired-view-command-alist'.  Otherwise, display it in another buffer."
+Otherwise, display it in another buffer."
   (interactive)
   (let ((file (dired-get-file-for-visit)))
     (if (file-directory-p file)
        (or (and (cdr dired-subdir-alist)
                 (dired-goto-subdir file))
            (dired file))
-      (let (cmd)
-       ;; Look for some other way to view a certain file.
-       (dolist (elt dired-view-command-alist)
-         (if (string-match (car elt) file)
-             (setq cmd (cdr elt))))
-       (if cmd
-           (call-process shell-file-name nil 0 nil
-                         "-c"
-                         (concat (format cmd (shell-quote-argument file))
-                                 " &"))
-         (view-file file))))))
+      (view-file file))))
 
 (defun dired-find-file-other-window ()
   "In Dired, visit this file or directory in another window."