aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2009-10-31 02:19:41 +0000
committerGlenn Morris2009-10-31 02:19:41 +0000
commit5cf3709cc648fe3cab3d37358c8709e2e89b7b51 (patch)
tree3a5cb0b29fde63782eaf728771c51567fd7f6cb9 /lisp
parent4c814fd27ca4e6bda5f956913d405d552130d086 (diff)
downloademacs-5cf3709cc648fe3cab3d37358c8709e2e89b7b51.tar.gz
emacs-5cf3709cc648fe3cab3d37358c8709e2e89b7b51.zip
(top-level): Don't require dired when compiling.
(comint-last-output-start, comint-last-input-start) (comint-last-input-end): Don't defvar when compiling. (ange-ftp-process-file): Use bound-and-true-p.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/net/ange-ftp.el9
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 @@
12009-10-31 Glenn Morris <rgm@gnu.org> 12009-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))