2007-11-25 Glenn Morris <rgm@gnu.org>
+ * eshell/esh-maint.el (top-level): Move provide statement to the
+ end of the file. Use require with NOERROR for pcomplete. Don't
+ mess with load-path.
+
* eshell/eshell.el (eshell-report-bug-address): Remove.
(eshell-report-bug): Redefine as an alias for report-emacs-bug.
;;; Code:
-(provide 'esh-maint)
-
(and (fboundp 'font-lock-add-keywords)
(font-lock-add-keywords
'emacs-lisp-mode
("(eshell-deftest\\>" . font-lock-keyword-face)
("(eshell-condition-case\\>" . font-lock-keyword-face))))
-(if (file-directory-p "../pcomplete")
- (add-to-list 'load-path "../pcomplete"))
-
-(if (locate-library "pcomplete")
- (require 'pcomplete))
+(require 'pcomplete nil t) ; why?
(eval-when-compile
(require 'cl)
;; (delete-file "README.texi")
;; (kill-buffer "README.texi"))
+(provide 'esh-maint)
+
;;; arch-tag: 662089b6-78ec-48c5-b94f-d212279e8902
;;; esh-maint.el ends here