diff options
| author | Sam Steingold | 2008-04-28 15:05:45 +0000 |
|---|---|---|
| committer | Sam Steingold | 2008-04-28 15:05:45 +0000 |
| commit | c5de0a17040b2df166eed0a909194cb271b997d0 (patch) | |
| tree | 3626c87f3efeab9eb149fa8b9a279c902ef889c6 | |
| parent | 602f074a510a2e6ce5b9ba4be6cbaa32279febae (diff) | |
| download | emacs-c5de0a17040b2df166eed0a909194cb271b997d0.tar.gz emacs-c5de0a17040b2df166eed0a909194cb271b997d0.zip | |
(diary-make-entry): Update the autoload.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/textmodes/remember.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 85c3311d1b6..711f0181023 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-04-28 Sam Steingold <sds@gnu.org> | ||
| 2 | |||
| 3 | * textmodes/remember.el (diary-make-entry): Update the autoload. | ||
| 4 | |||
| 1 | 2008-04-28 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2008-04-28 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * minibuffer.el (completion-pcm--all-completions): Don't pass nil to | 7 | * minibuffer.el (completion-pcm--all-completions): Don't pass nil to |
diff --git a/lisp/textmodes/remember.el b/lisp/textmodes/remember.el index 7cf21f91d65..8469a715449 100644 --- a/lisp/textmodes/remember.el +++ b/lisp/textmodes/remember.el | |||
| @@ -480,7 +480,7 @@ If this is nil, then `diary-file' will be used instead." | |||
| 480 | (if (string-match "\\([0-9]+\\)\\.\\([0-9]+\\)\\.\\([0-9]+\\)" entry) | 480 | (if (string-match "\\([0-9]+\\)\\.\\([0-9]+\\)\\.\\([0-9]+\\)" entry) |
| 481 | (progn | 481 | (progn |
| 482 | ;; For calendar-date-style. This costs us nothing because | 482 | ;; For calendar-date-style. This costs us nothing because |
| 483 | ;; the call to make-diary-entry below loads diary-lib | 483 | ;; the call to diary-make-entry below loads diary-lib |
| 484 | ;; which requires calendar. | 484 | ;; which requires calendar. |
| 485 | (require 'calendar) | 485 | (require 'calendar) |
| 486 | (replace-match | 486 | (replace-match |
| @@ -504,7 +504,7 @@ If this is nil, then `diary-file' will be used instead." | |||
| 504 | t t entry)) | 504 | t t entry)) |
| 505 | entry))) | 505 | entry))) |
| 506 | 506 | ||
| 507 | (autoload 'make-diary-entry "diary-lib") | 507 | (autoload 'diary-make-entry "diary-lib") |
| 508 | 508 | ||
| 509 | ;;;###autoload | 509 | ;;;###autoload |
| 510 | (defun remember-diary-extract-entries () | 510 | (defun remember-diary-extract-entries () |