emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/dired.el


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/dired.el
Date: Sun, 06 Apr 2003 16:17:43 -0400

Index: emacs/lisp/dired.el
diff -c emacs/lisp/dired.el:1.257 emacs/lisp/dired.el:1.258
*** emacs/lisp/dired.el:1.257   Wed Mar 19 06:58:25 2003
--- emacs/lisp/dired.el Sun Apr  6 16:17:43 2003
***************
*** 1417,1424 ****
          (if (string-match (car elt) file)
              (setq cmd (cdr elt))))
        (if cmd
!           (dired-run-shell-command (concat cmd " "
!                                            (shell-quote-argument file)))
          (view-file file))))))
  
  (defun dired-find-file-other-window ()
--- 1417,1427 ----
          (if (string-match (car elt) file)
              (setq cmd (cdr elt))))
        (if cmd
!           (call-process shell-file-name nil 0 nil
!                         "-c"
!                         (concat cmd " "
!                                 (shell-quote-argument file)
!                                 " &"))
          (view-file file))))))
  
  (defun dired-find-file-other-window ()




reply via email to

[Prev in Thread] Current Thread [Next in Thread]