diff options
| author | John Wiegley | 2000-10-14 08:16:50 +0000 |
|---|---|---|
| committer | John Wiegley | 2000-10-14 08:16:50 +0000 |
| commit | 57a24508cfd422ae8231b297265ce6a0c5256db1 (patch) | |
| tree | 6548c498f0167c5f924219a5f5139c03615690c3 | |
| parent | a2e2a7f656ef24a26b0f93fb66e2dfa35c8b87d6 (diff) | |
| download | emacs-57a24508cfd422ae8231b297265ce6a0c5256db1.tar.gz emacs-57a24508cfd422ae8231b297265ce6a0c5256db1.zip | |
Added a missing `require' form.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/eshell/esh-util.el | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 48f4e240e2c..26c73ad595d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-10-13 John Wiegley <johnw@gnu.org> | ||
| 2 | |||
| 3 | * eshell/esh-util.el (require): Added a missing `require' form, | ||
| 4 | needed when compiling (for an ange-ftp macro definition). | ||
| 5 | |||
| 1 | 2000-10-13 Dave Love <fx@gnu.org> | 6 | 2000-10-13 Dave Love <fx@gnu.org> |
| 2 | 7 | ||
| 3 | * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch. | 8 | * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch. |
diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el index 84416893107..a4f2ec98db9 100644 --- a/lisp/eshell/esh-util.el +++ b/lisp/eshell/esh-util.el | |||
| @@ -608,6 +608,9 @@ Unless optional argument INPLACE is non-nil, return a new string." | |||
| 608 | (locate-library "parse-time")) | 608 | (locate-library "parse-time")) |
| 609 | (autoload 'parse-time-string "parse-time")) | 609 | (autoload 'parse-time-string "parse-time")) |
| 610 | 610 | ||
| 611 | (eval-when-compile | ||
| 612 | (require 'ange-ftp)) | ||
| 613 | |||
| 611 | (defun eshell-parse-ange-ls (dir) | 614 | (defun eshell-parse-ange-ls (dir) |
| 612 | (let (entry) | 615 | (let (entry) |
| 613 | (with-temp-buffer | 616 | (with-temp-buffer |