# HG changeset patch # User Glenn Morris # Date 1257391338 0 # Node ID 90020795653887a8f4579c96370bd8ab70bf2918 # Parent 55cefc906ff36488b1d3e31591e2a013cfbee99a (top-level): Make load behave more like require. diff -r 55cefc906ff3 -r 900207956538 lisp/ChangeLog --- a/lisp/ChangeLog Thu Nov 05 03:20:05 2009 +0000 +++ b/lisp/ChangeLog Thu Nov 05 03:22:18 2009 +0000 @@ -1,3 +1,7 @@ +2009-11-05 Glenn Morris + + * calendar/diary-lib.el (top-level): Make load behave more like require. + 2009-11-04 Dan Nicolaescu * custom.el (custom-declare-group): Purecopy standard-value. diff -r 55cefc906ff3 -r 900207956538 lisp/calendar/diary-lib.el --- a/lisp/calendar/diary-lib.el Thu Nov 05 03:20:05 2009 +0000 +++ b/lisp/calendar/diary-lib.el Thu Nov 05 03:22:18 2009 +0000 @@ -29,7 +29,7 @@ ;;; Code: (require 'calendar) -(load "diary-loaddefs" nil 'nomessage) +(eval-and-compile (load "diary-loaddefs" nil t)) (defgroup diary nil "Emacs diary."