(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.
This commit is contained in:
parent
4c814fd27c
commit
5cf3709cc6
2 changed files with 7 additions and 7 deletions
|
|
@ -1,5 +1,10 @@
|
|||
2009-10-31 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* net/ange-ftp.el (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.
|
||||
|
||||
* pcmpl-rpm.el (top-level): Move provide statement to end.
|
||||
(pcmpl-rpm): Remove unused custom group.
|
||||
|
||||
|
|
|
|||
|
|
@ -667,12 +667,6 @@
|
|||
;;; Code:
|
||||
|
||||
(require 'comint)
|
||||
;; Silence compiler:
|
||||
(eval-when-compile
|
||||
(require 'dired)
|
||||
(defvar comint-last-output-start nil)
|
||||
(defvar comint-last-input-start nil)
|
||||
(defvar comint-last-input-end nil))
|
||||
|
||||
;;;; ------------------------------------------------------------
|
||||
;;;; User customization variables.
|
||||
|
|
@ -4580,7 +4574,8 @@ NEWNAME should be the name to give the new compressed or uncompressed file.")
|
|||
;; Can't use ange-ftp-dired-host-type here because the current
|
||||
;; buffer is *dired-check-process output*
|
||||
(condition-case oops
|
||||
(cond ((equal dired-chmod-program program)
|
||||
(cond ((equal (or (bound-and-true-p dired-chmod-program) "chmod")
|
||||
program)
|
||||
(ange-ftp-call-chmod arguments))
|
||||
;; ((equal "chgrp" program))
|
||||
;; ((equal dired-chown-program program))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue