mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-22 18:35:09 +00:00
* 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.
This commit is contained in:
parent
7e83e8b459
commit
d3d5f4f504
@ -1,3 +1,10 @@
|
||||
2009-11-04 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* calendar/calendar.el (cal-loaddefs):
|
||||
* calendar/diary-lib.el (diary-loaddefs):
|
||||
* calendar/holidays.el (hol-loaddefs):
|
||||
* eshell/esh-module.el (esh-groups): Load rather than require.
|
||||
|
||||
2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* calendar/todo-mode.el (todo-add-category): Don't hardcode point-min==1.
|
||||
|
@ -114,7 +114,7 @@
|
||||
|
||||
;;; Code:
|
||||
|
||||
(require 'cal-loaddefs)
|
||||
(load "cal-loaddefs" nil 'nomessage)
|
||||
|
||||
;; Avoid recursive load of calendar when loading cal-menu. Yuck.
|
||||
(provide 'calendar)
|
||||
|
@ -29,7 +29,7 @@
|
||||
;;; Code:
|
||||
|
||||
(require 'calendar)
|
||||
(require 'diary-loaddefs)
|
||||
(load "diary-loaddefs" nil 'nomessage)
|
||||
|
||||
(defgroup diary nil
|
||||
"Emacs diary."
|
||||
|
@ -29,7 +29,7 @@
|
||||
;;; Code:
|
||||
|
||||
(require 'calendar)
|
||||
(require 'hol-loaddefs)
|
||||
(load "hol-loaddefs" nil 'nomessage)
|
||||
|
||||
(defgroup holidays nil
|
||||
"Holidays support in calendar."
|
||||
|
@ -38,7 +38,7 @@ customizing the variable `eshell-modules-list'."
|
||||
;; load the defgroup's for the standard extension modules, so that
|
||||
;; documentation can be provided when the user customize's
|
||||
;; `eshell-modules-list'.
|
||||
(require 'esh-groups)
|
||||
(load "esh-groups" nil 'nomessage)
|
||||
|
||||
;;; User Variables:
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2009-11-04 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* mh-e.el (mh-loaddefs): Load rather than require.
|
||||
|
||||
2009-10-06 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* mh-show.el (mh-show-msg): Use window-full-height-p.
|
||||
@ -40,7 +44,7 @@
|
||||
|
||||
* mh-seq.el (mh-parse-flist-output-line): Return list rather than values.
|
||||
We want to avoid emacs using m-v facilities.
|
||||
(mh-folder-size-folder): Ditto.
|
||||
(mh-folder-size-folder): Ditto.
|
||||
(mh-parse-flist-output-line): Ditto.
|
||||
* mh-thread.el (mh-thread-prune-subject): Ditto.
|
||||
* mh-xface.el (mh-picon-get-image): Ditto.
|
||||
|
@ -92,7 +92,7 @@
|
||||
;; Provide functions to the rest of MH-E. However, mh-e.el must not
|
||||
;; use any definitions in files that require mh-e from mh-loaddefs,
|
||||
;; for if it does it will introduce a require loop.
|
||||
(require 'mh-loaddefs)
|
||||
(load "mh-loaddefs" nil 'nomessage)
|
||||
|
||||
(mh-require-cl)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user