diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/net/ange-ftp.el | 9 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a3183fb08b8..8cf34e1bdc7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2009-10-31 Glenn Morris <rgm@gnu.org> | 1 | 2009-10-31 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * net/ange-ftp.el (top-level): Don't require dired when compiling. | ||
| 4 | (comint-last-output-start, comint-last-input-start) | ||
| 5 | (comint-last-input-end): Don't defvar when compiling. | ||
| 6 | (ange-ftp-process-file): Use bound-and-true-p. | ||
| 7 | |||
| 3 | * pcmpl-rpm.el (top-level): Move provide statement to end. | 8 | * pcmpl-rpm.el (top-level): Move provide statement to end. |
| 4 | (pcmpl-rpm): Remove unused custom group. | 9 | (pcmpl-rpm): Remove unused custom group. |
| 5 | 10 | ||
diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el index 38b1646f452..7eb01d7c410 100644 --- a/lisp/net/ange-ftp.el +++ b/lisp/net/ange-ftp.el | |||
| @@ -667,12 +667,6 @@ | |||
| 667 | ;;; Code: | 667 | ;;; Code: |
| 668 | 668 | ||
| 669 | (require 'comint) | 669 | (require 'comint) |
| 670 | ;; Silence compiler: | ||
| 671 | (eval-when-compile | ||
| 672 | (require 'dired) | ||
| 673 | (defvar comint-last-output-start nil) | ||
| 674 | (defvar comint-last-input-start nil) | ||
| 675 | (defvar comint-last-input-end nil)) | ||
| 676 | 670 | ||
| 677 | ;;;; ------------------------------------------------------------ | 671 | ;;;; ------------------------------------------------------------ |
| 678 | ;;;; User customization variables. | 672 | ;;;; User customization variables. |
| @@ -4580,7 +4574,8 @@ NEWNAME should be the name to give the new compressed or uncompressed file.") | |||
| 4580 | ;; Can't use ange-ftp-dired-host-type here because the current | 4574 | ;; Can't use ange-ftp-dired-host-type here because the current |
| 4581 | ;; buffer is *dired-check-process output* | 4575 | ;; buffer is *dired-check-process output* |
| 4582 | (condition-case oops | 4576 | (condition-case oops |
| 4583 | (cond ((equal dired-chmod-program program) | 4577 | (cond ((equal (or (bound-and-true-p dired-chmod-program) "chmod") |
| 4578 | program) | ||
| 4584 | (ange-ftp-call-chmod arguments)) | 4579 | (ange-ftp-call-chmod arguments)) |
| 4585 | ;; ((equal "chgrp" program)) | 4580 | ;; ((equal "chgrp" program)) |
| 4586 | ;; ((equal dired-chown-program program)) | 4581 | ;; ((equal dired-chown-program program)) |