when the argument is nil.
+2008-02-19 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * net/ange-ftp.el (ange-ftp-quote-string): Return the null string
+ when the argument is nil.
+
2008-02-19 Dan Nicolaescu <dann@ics.uci.edu>
* vc.el (dir-status): Add a brief description.
;; and that by doubling it. But experiment says UNIX-style kind of
;; quoting is correct when talking to ftp on GNU/Linux systems, and
;; W32-style kind of quoting on, yes, W32 systems.
- (when (stringp string) (shell-quote-argument string)))
+ (if (stringp string)
+ (shell-quote-argument string)
+ ""))
(defun ange-ftp-barf-if-not-directory (directory)
(or (file-directory-p directory)