+2000-11-16 Gerd Moellmann <gerd@gnu.org>
+
+ * net/ange-ftp.el (ange-ftp-file-writable-p)
+ (ange-ftp-file-readable-p, ange-ftp-file-executable-p): Bind
+ ange-ftp-process-verbose to nil.
+
2000-11-15 Dave Love <fx@gnu.org>
* wid-edit.el (widget-specify-field, widget-specify-button): If
2000-11-15 Gerd Moellmann <gerd@gnu.org>
* faces.el (face-set-after-frame-default): If
- `inhibit-default-face-x-resources' is bound, don't intiialize the
+ `inhibit-default-face-x-resources' is bound, don't intialize the
default face from X resources.
2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
(ange-ftp-real-file-newer-than-file-p f1 f2))))
(defun ange-ftp-file-writable-p (file)
- (setq file (expand-file-name file))
- (if (ange-ftp-ftp-name file)
- (or (file-exists-p file) ;guess here for speed
- (file-directory-p (file-name-directory file)))
- (ange-ftp-real-file-writable-p file)))
+ (let ((ange-ftp-process-verbose nil))
+ (setq file (expand-file-name file))
+ (if (ange-ftp-ftp-name file)
+ (or (file-exists-p file) ;guess here for speed
+ (file-directory-p (file-name-directory file)))
+ (ange-ftp-real-file-writable-p file))))
(defun ange-ftp-file-readable-p (file)
- (setq file (expand-file-name file))
- (if (ange-ftp-ftp-name file)
- (file-exists-p file)
- (ange-ftp-real-file-readable-p file)))
+ (let ((ange-ftp-process-verbose nil))
+ (setq file (expand-file-name file))
+ (if (ange-ftp-ftp-name file)
+ (file-exists-p file)
+ (ange-ftp-real-file-readable-p file))))
(defun ange-ftp-file-executable-p (file)
- (setq file (expand-file-name file))
- (if (ange-ftp-ftp-name file)
- (file-exists-p file)
- (ange-ftp-real-file-executable-p file)))
+ (let ((ange-ftp-process-verbose nil))
+ (setq file (expand-file-name file))
+ (if (ange-ftp-ftp-name file)
+ (file-exists-p file)
+ (ange-ftp-real-file-executable-p file))))
(defun ange-ftp-delete-file (file)
(interactive "fDelete file: ")