emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/view.el
Date: Sat, 31 May 2003 13:53:25 -0400

Index: emacs/lisp/view.el
diff -c emacs/lisp/view.el:1.69 emacs/lisp/view.el:1.70
*** emacs/lisp/view.el:1.69     Sat May  3 09:52:17 2003
--- emacs/lisp/view.el  Sat May 31 13:53:24 2003
***************
*** 242,247 ****
--- 242,248 ----
  
  This command runs the normal hook `view-mode-hook'."
    (interactive "fView file: ")
+   (unless (file-exists-p file) (error "%s does not exist" file))
    (let ((had-a-buf (get-file-buffer file)))
      (view-buffer (find-file-noselect file)
                 (and (not had-a-buf) 'kill-buffer))))
***************
*** 258,263 ****
--- 259,265 ----
  
  This command runs the normal hook `view-mode-hook'."
    (interactive "fIn other window view file: ")
+   (unless (file-exists-p file) (error "%s does not exist" file))
    (let ((had-a-buf (get-file-buffer file)))
      (view-buffer-other-window (find-file-noselect file) nil
                              (and (not had-a-buf) 'kill-buffer))))
***************
*** 274,279 ****
--- 276,282 ----
  
  This command runs the normal hook `view-mode-hook'."
    (interactive "fIn other frame view file: ")
+   (unless (file-exists-p file) (error "%s does not exist" file))
    (let ((had-a-buf (get-file-buffer file)))
      (view-buffer-other-frame (find-file-noselect file) nil
                             (and (not had-a-buf) 'kill-buffer))))




reply via email to

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