[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/dired.el
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/dired.el |
Date: |
Wed, 03 Jul 2002 05:04:31 -0400 |
Index: emacs/lisp/dired.el
diff -c emacs/lisp/dired.el:1.232 emacs/lisp/dired.el:1.233
*** emacs/lisp/dired.el:1.232 Wed Jun 26 04:40:22 2002
--- emacs/lisp/dired.el Sat Jun 29 13:40:14 2002
***************
*** 1,6 ****
;;; dired.el --- directory-browsing commands
! ;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96, 1997, 2000, 2001
;; Free Software Foundation, Inc.
;; Author: Sebastian Kremer <address@hidden>
--- 1,6 ----
;;; dired.el --- directory-browsing commands
! ;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96, 1997, 2000, 2001, 2002
;; Free Software Foundation, Inc.
;; Author: Sebastian Kremer <address@hidden>
***************
*** 1407,1413 ****
(if (string-match (car elt) file)
(setq cmd (cdr elt))))
(if cmd
! (dired-run-shell-command (concat cmd " " file))
(view-file file))))))
(defun dired-find-file-other-window ()
--- 1407,1414 ----
(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 ()
- [Emacs-diffs] Changes to emacs/lisp/dired.el,
Juanma Barranquero <=