]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/term/ns-win.el (ns-insert-file): Init in let.
authorGlenn Morris <rgm@gnu.org>
Wed, 27 Oct 2010 07:39:34 +0000 (00:39 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 27 Oct 2010 07:39:34 +0000 (00:39 -0700)
(ns-find-file): Use let*.

lisp/term/ns-win.el

index ab18d9ad8063d4a8b01545a89628d2ec5b368d98..e0dffa87251f8cdcf337e9009230b81f9c251c72 100644 (file)
@@ -420,8 +420,7 @@ See `ns-insert-working-text'."
   "Insert contents of file `ns-input-file' like insert-file but with less
 prompting.  If file is a directory perform a `find-file' on it."
   (interactive)
-  (let (f)
-    (setq f (pop ns-input-file))
+  (let ((f (pop ns-input-file)))
     (if (file-directory-p f)
         (find-file f)
       (push-mark (+ (point) (cadr (insert-file-contents f)))))))
@@ -527,11 +526,10 @@ unless the current buffer is a scratch buffer."
 (defun ns-find-file ()
   "Do a `find-file' with the `ns-input-file' as argument."
   (interactive)
-  (let (f file bufwin1 bufwin2)
-    (setq f (file-truename (pop ns-input-file))
-          file (find-file-noselect f)
-          bufwin1 (get-buffer-window file 'visible)
-          bufwin2 (get-buffer-window "*scratch*" 'visibile))
+  (let* ((f (file-truename (pop ns-input-file)))
+         (file (find-file-noselect f))
+         (bufwin1 (get-buffer-window file 'visible))
+         (bufwin2 (get-buffer-window "*scratch*" 'visibile)))
     (cond
      (bufwin1
       (select-frame (window-frame bufwin1))