diff options
| author | Juanma Barranquero | 2009-11-04 00:27:34 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2009-11-04 00:27:34 +0000 |
| commit | d3d5f4f504d852b382838568dd1ee23fd151464c (patch) | |
| tree | 880d027ee7e9ace7d2782a321be4c7d7f974ccae /lisp | |
| parent | 7e83e8b459e07f89f8a1e3902637b6b2e7a94288 (diff) | |
| download | emacs-d3d5f4f504d852b382838568dd1ee23fd151464c.tar.gz emacs-d3d5f4f504d852b382838568dd1ee23fd151464c.zip | |
* calendar/calendar.el (cal-loaddefs):
* calendar/diary-lib.el (diary-loaddefs):
* calendar/holidays.el (hol-loaddefs):
* eshell/esh-module.el (esh-groups):
* mh/mh-e.el (mh-loaddefs): Load rather than require.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/calendar/calendar.el | 2 | ||||
| -rw-r--r-- | lisp/calendar/diary-lib.el | 2 | ||||
| -rw-r--r-- | lisp/calendar/holidays.el | 2 | ||||
| -rw-r--r-- | lisp/eshell/esh-module.el | 2 | ||||
| -rw-r--r-- | lisp/mh-e/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/mh-e/mh-e.el | 2 |
7 files changed, 17 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5ccb97f2150..5ff816a3552 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2009-11-04 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * calendar/calendar.el (cal-loaddefs): | ||
| 4 | * calendar/diary-lib.el (diary-loaddefs): | ||
| 5 | * calendar/holidays.el (hol-loaddefs): | ||
| 6 | * eshell/esh-module.el (esh-groups): Load rather than require. | ||
| 7 | |||
| 1 | 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca> | 8 | 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 9 | ||
| 3 | * calendar/todo-mode.el (todo-add-category): Don't hardcode point-min==1. | 10 | * calendar/todo-mode.el (todo-add-category): Don't hardcode point-min==1. |
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index 75fe5abc3ca..d72a56d1114 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el | |||
| @@ -114,7 +114,7 @@ | |||
| 114 | 114 | ||
| 115 | ;;; Code: | 115 | ;;; Code: |
| 116 | 116 | ||
| 117 | (require 'cal-loaddefs) | 117 | (load "cal-loaddefs" nil 'nomessage) |
| 118 | 118 | ||
| 119 | ;; Avoid recursive load of calendar when loading cal-menu. Yuck. | 119 | ;; Avoid recursive load of calendar when loading cal-menu. Yuck. |
| 120 | (provide 'calendar) | 120 | (provide 'calendar) |
diff --git a/lisp/calendar/diary-lib.el b/lisp/calendar/diary-lib.el index 797f330e408..68dbf144aa3 100644 --- a/lisp/calendar/diary-lib.el +++ b/lisp/calendar/diary-lib.el | |||
| @@ -29,7 +29,7 @@ | |||
| 29 | ;;; Code: | 29 | ;;; Code: |
| 30 | 30 | ||
| 31 | (require 'calendar) | 31 | (require 'calendar) |
| 32 | (require 'diary-loaddefs) | 32 | (load "diary-loaddefs" nil 'nomessage) |
| 33 | 33 | ||
| 34 | (defgroup diary nil | 34 | (defgroup diary nil |
| 35 | "Emacs diary." | 35 | "Emacs diary." |
diff --git a/lisp/calendar/holidays.el b/lisp/calendar/holidays.el index c1c38351fb1..d4d1e914333 100644 --- a/lisp/calendar/holidays.el +++ b/lisp/calendar/holidays.el | |||
| @@ -29,7 +29,7 @@ | |||
| 29 | ;;; Code: | 29 | ;;; Code: |
| 30 | 30 | ||
| 31 | (require 'calendar) | 31 | (require 'calendar) |
| 32 | (require 'hol-loaddefs) | 32 | (load "hol-loaddefs" nil 'nomessage) |
| 33 | 33 | ||
| 34 | (defgroup holidays nil | 34 | (defgroup holidays nil |
| 35 | "Holidays support in calendar." | 35 | "Holidays support in calendar." |
diff --git a/lisp/eshell/esh-module.el b/lisp/eshell/esh-module.el index 9cdebd71295..07040738683 100644 --- a/lisp/eshell/esh-module.el +++ b/lisp/eshell/esh-module.el | |||
| @@ -38,7 +38,7 @@ customizing the variable `eshell-modules-list'." | |||
| 38 | ;; load the defgroup's for the standard extension modules, so that | 38 | ;; load the defgroup's for the standard extension modules, so that |
| 39 | ;; documentation can be provided when the user customize's | 39 | ;; documentation can be provided when the user customize's |
| 40 | ;; `eshell-modules-list'. | 40 | ;; `eshell-modules-list'. |
| 41 | (require 'esh-groups) | 41 | (load "esh-groups" nil 'nomessage) |
| 42 | 42 | ||
| 43 | ;;; User Variables: | 43 | ;;; User Variables: |
| 44 | 44 | ||
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 3102f74f506..0ad943588bd 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-11-04 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * mh-e.el (mh-loaddefs): Load rather than require. | ||
| 4 | |||
| 1 | 2009-10-06 Glenn Morris <rgm@gnu.org> | 5 | 2009-10-06 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * mh-show.el (mh-show-msg): Use window-full-height-p. | 7 | * mh-show.el (mh-show-msg): Use window-full-height-p. |
| @@ -40,7 +44,7 @@ | |||
| 40 | 44 | ||
| 41 | * mh-seq.el (mh-parse-flist-output-line): Return list rather than values. | 45 | * mh-seq.el (mh-parse-flist-output-line): Return list rather than values. |
| 42 | We want to avoid emacs using m-v facilities. | 46 | We want to avoid emacs using m-v facilities. |
| 43 | (mh-folder-size-folder): Ditto. | 47 | (mh-folder-size-folder): Ditto. |
| 44 | (mh-parse-flist-output-line): Ditto. | 48 | (mh-parse-flist-output-line): Ditto. |
| 45 | * mh-thread.el (mh-thread-prune-subject): Ditto. | 49 | * mh-thread.el (mh-thread-prune-subject): Ditto. |
| 46 | * mh-xface.el (mh-picon-get-image): Ditto. | 50 | * mh-xface.el (mh-picon-get-image): Ditto. |
diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index 00c1c895bf3..7b7a9e5d9b5 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el | |||
| @@ -92,7 +92,7 @@ | |||
| 92 | ;; Provide functions to the rest of MH-E. However, mh-e.el must not | 92 | ;; Provide functions to the rest of MH-E. However, mh-e.el must not |
| 93 | ;; use any definitions in files that require mh-e from mh-loaddefs, | 93 | ;; use any definitions in files that require mh-e from mh-loaddefs, |
| 94 | ;; for if it does it will introduce a require loop. | 94 | ;; for if it does it will introduce a require loop. |
| 95 | (require 'mh-loaddefs) | 95 | (load "mh-loaddefs" nil 'nomessage) |
| 96 | 96 | ||
| 97 | (mh-require-cl) | 97 | (mh-require-cl) |
| 98 | 98 | ||