diff options
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2123e07d766..a7cf4d23121 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * emacs-lisp/cl.el: Load cl-loaddefs.el quietly. | ||
| 4 | |||
| 3 | * vc-arch.el (vc-arch-complete): Remove. | 5 | * vc-arch.el (vc-arch-complete): Remove. |
| 4 | (vc-arch-revision-completion-table): Use complete-with-action. | 6 | (vc-arch-revision-completion-table): Use complete-with-action. |
| 5 | 7 | ||
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el index 233df65ac91..f8b178ac07c 100644 --- a/lisp/emacs-lisp/cl.el +++ b/lisp/emacs-lisp/cl.el | |||
| @@ -628,7 +628,7 @@ If ALIST is non-nil, the new pairs are prepended to it." | |||
| 628 | (fmakunbound 'dolist) | 628 | (fmakunbound 'dolist) |
| 629 | (fmakunbound 'dotimes) | 629 | (fmakunbound 'dotimes) |
| 630 | (fmakunbound 'declare) | 630 | (fmakunbound 'declare) |
| 631 | (load "cl-loaddefs") | 631 | (load "cl-loaddefs" nil 'quiet) |
| 632 | 632 | ||
| 633 | ;; This goes here so that cl-macs can find it if it loads right now. | 633 | ;; This goes here so that cl-macs can find it if it loads right now. |
| 634 | (provide 'cl-19) ; usage: (require 'cl-19 "cl") | 634 | (provide 'cl-19) ; usage: (require 'cl-19 "cl") |