emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog calendar/calendar.el calen...


From: Juanma Barranquero
Subject: [Emacs-diffs] emacs/lisp ChangeLog calendar/calendar.el calen...
Date: Wed, 04 Nov 2009 00:27:38 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Juanma Barranquero <lektu>      09/11/04 00:27:38

Modified files:
        lisp           : ChangeLog 
        lisp/calendar  : calendar.el diary-lib.el holidays.el 
        lisp/eshell    : esh-module.el 
        lisp/mh-e      : ChangeLog mh-e.el 

Log message:
        * 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.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16552&r2=1.16553
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/calendar/calendar.el?cvsroot=emacs&r1=1.290&r2=1.291
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/calendar/diary-lib.el?cvsroot=emacs&r1=1.193&r2=1.194
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/calendar/holidays.el?cvsroot=emacs&r1=1.87&r2=1.88
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/eshell/esh-module.el?cvsroot=emacs&r1=1.24&r2=1.25
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/mh-e/ChangeLog?cvsroot=emacs&r1=1.304&r2=1.305
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/mh-e/mh-e.el?cvsroot=emacs&r1=1.135&r2=1.136

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16552
retrieving revision 1.16553
diff -u -b -r1.16552 -r1.16553
--- ChangeLog   3 Nov 2009 22:24:34 -0000       1.16552
+++ ChangeLog   4 Nov 2009 00:27:34 -0000       1.16553
@@ -1,3 +1,10 @@
+2009-11-04  Juanma Barranquero  <address@hidden>
+
+       * 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  <address@hidden>
 
        * calendar/todo-mode.el (todo-add-category): Don't hardcode 
point-min==1.

Index: calendar/calendar.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/calendar/calendar.el,v
retrieving revision 1.290
retrieving revision 1.291
diff -u -b -r1.290 -r1.291
--- calendar/calendar.el        10 Oct 2009 20:50:42 -0000      1.290
+++ calendar/calendar.el        4 Nov 2009 00:27:37 -0000       1.291
@@ -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)

Index: calendar/diary-lib.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/calendar/diary-lib.el,v
retrieving revision 1.193
retrieving revision 1.194
diff -u -b -r1.193 -r1.194
--- calendar/diary-lib.el       3 Nov 2009 02:04:34 -0000       1.193
+++ calendar/diary-lib.el       4 Nov 2009 00:27:37 -0000       1.194
@@ -29,7 +29,7 @@
 ;;; Code:
 
 (require 'calendar)
-(require 'diary-loaddefs)
+(load "diary-loaddefs" nil 'nomessage)
 
 (defgroup diary nil
   "Emacs diary."

Index: calendar/holidays.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/calendar/holidays.el,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -b -r1.87 -r1.88
--- calendar/holidays.el        2 Apr 2009 06:34:24 -0000       1.87
+++ calendar/holidays.el        4 Nov 2009 00:27:37 -0000       1.88
@@ -29,7 +29,7 @@
 ;;; Code:
 
 (require 'calendar)
-(require 'hol-loaddefs)
+(load "hol-loaddefs" nil 'nomessage)
 
 (defgroup holidays nil
   "Holidays support in calendar."

Index: eshell/esh-module.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/eshell/esh-module.el,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -b -r1.24 -r1.25
--- eshell/esh-module.el        5 Jan 2009 03:21:47 -0000       1.24
+++ eshell/esh-module.el        4 Nov 2009 00:27:37 -0000       1.25
@@ -38,7 +38,7 @@
 ;; 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:
 

Index: mh-e/ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/mh-e/ChangeLog,v
retrieving revision 1.304
retrieving revision 1.305
diff -u -b -r1.304 -r1.305
--- mh-e/ChangeLog      6 Oct 2009 02:42:33 -0000       1.304
+++ mh-e/ChangeLog      4 Nov 2009 00:27:37 -0000       1.305
@@ -1,3 +1,7 @@
+2009-11-04  Juanma Barranquero  <address@hidden>
+
+       * mh-e.el (mh-loaddefs): Load rather than require.
+
 2009-10-06  Glenn Morris  <address@hidden>
 
        * mh-show.el (mh-show-msg): Use window-full-height-p.

Index: mh-e/mh-e.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/mh-e/mh-e.el,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -b -r1.135 -r1.136
--- mh-e/mh-e.el        13 Jun 2009 17:09:28 -0000      1.135
+++ mh-e/mh-e.el        4 Nov 2009 00:27:37 -0000       1.136
@@ -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)
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]