]> git.eshelyaron.com Git - emacs.git/commitdiff
(ange-ftp-dired-uncache): Fix parens so that `(setq ...' is a result
authorBrian Fox <bfox@gnu.org>
Mon, 25 Oct 1993 06:11:49 +0000 (06:11 +0000)
committerBrian Fox <bfox@gnu.org>
Mon, 25 Oct 1993 06:11:49 +0000 (06:11 +0000)
of the if statement, and not a top level expression.

lisp/ange-ftp.el

index eb6e77cb07c10b377768493b977b6ef3c9570281..312f3ee6d35705698e0e67b3a460c013da71bb5f 100644 (file)
@@ -856,7 +856,7 @@ SIZE, if supplied, should be a prime number."
 ;;;; Internal variables.
 ;;;; ------------------------------------------------------------
 
-(defconst ange-ftp-version "$Revision: 1.32 $")
+(defconst ange-ftp-version "$Revision: 1.33 $")
 
 (defvar ange-ftp-data-buffer-name " *ftp data*"
   "Buffer name to hold directory listing data received from ftp process.")
@@ -3940,8 +3940,8 @@ NEWNAME should be the name to give the new compressed or uncompressed file.")
       (ange-ftp-real-insert-directory file switches wildcard full))))
 
 (defun ange-ftp-dired-uncache (dir)
-  (if (ange-ftp-ftp-name (expand-file-name dir)))
-      (setq ange-ftp-ls-cache-file nil))
+  (if (ange-ftp-ftp-name (expand-file-name dir))
+      (setq ange-ftp-ls-cache-file nil)))
 
 (defvar ange-ftp-sans-version-alist nil
   "Alist of mapping host type into function to remove file version numbers.")