diff options
| author | Thien-Thi Nguyen | 2006-05-21 22:25:22 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2006-05-21 22:25:22 +0000 |
| commit | 3fe358978b87e271cb69d56a93d883d02616507f (patch) | |
| tree | 44ca2c596b1b3af4a498007ac9bd9d685c8206bd | |
| parent | aa18ec07ffd3550c614588dbb416ce7b1da2d63d (diff) | |
| download | emacs-3fe358978b87e271cb69d56a93d883d02616507f.tar.gz emacs-3fe358978b87e271cb69d56a93d883d02616507f.zip | |
(ewoc-create): Add autoload cookie.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/ewoc.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9bf1efb7bf9..2431a0954d8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/ewoc.el (ewoc-create): Add autoload cookie. | ||
| 4 | |||
| 1 | 2006-05-21 Romain Francoise <romain@orebokech.com> | 5 | 2006-05-21 Romain Francoise <romain@orebokech.com> |
| 2 | 6 | ||
| 3 | * dired-x.el (dired-mode-map): Don't bind M-g. | 7 | * dired-x.el (dired-mode-map): Don't bind M-g. |
diff --git a/lisp/emacs-lisp/ewoc.el b/lisp/emacs-lisp/ewoc.el index 7742de944cb..623f349d412 100644 --- a/lisp/emacs-lisp/ewoc.el +++ b/lisp/emacs-lisp/ewoc.el | |||
| @@ -255,7 +255,7 @@ NODE and leaving the new node's start there. Return the new node." | |||
| 255 | ;;; =========================================================================== | 255 | ;;; =========================================================================== |
| 256 | ;;; Public members of the Ewoc package | 256 | ;;; Public members of the Ewoc package |
| 257 | 257 | ||
| 258 | 258 | ;;;###autoload | |
| 259 | (defun ewoc-create (pretty-printer &optional header footer) | 259 | (defun ewoc-create (pretty-printer &optional header footer) |
| 260 | "Create an empty ewoc. | 260 | "Create an empty ewoc. |
| 261 | 261 | ||