diff options
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/calendar/holidays.el | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d5751cf1422..5a4fcd6d0af 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2009-04-02 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * calendar/diary-lib.el (diary-cyclic): Check for +ve N. | ||
| 4 | |||
| 5 | * calendar/holidays.el (calendar-holidays): | ||
| 6 | Don't autoload it. (Bug#2811) | ||
| 7 | |||
| 1 | 2009-04-02 Kenichi Handa <handa@m17n.org> | 8 | 2009-04-02 Kenichi Handa <handa@m17n.org> |
| 2 | 9 | ||
| 3 | * international/fontset.el (setup-default-fontset): Specify | 10 | * international/fontset.el (setup-default-fontset): Specify |
diff --git a/lisp/calendar/holidays.el b/lisp/calendar/holidays.el index 916a2671771..c1c38351fb1 100644 --- a/lisp/calendar/holidays.el +++ b/lisp/calendar/holidays.el | |||
| @@ -319,7 +319,9 @@ See the documentation for `calendar-holidays' for details." | |||
| 319 | ;;;###autoload | 319 | ;;;###autoload |
| 320 | (define-obsolete-variable-alias 'solar-holidays 'holiday-solar-holidays "23.1") | 320 | (define-obsolete-variable-alias 'solar-holidays 'holiday-solar-holidays "23.1") |
| 321 | 321 | ||
| 322 | ;;;###autoload | 322 | ;; This one should not be autoloaded, else .emacs changes of |
| 323 | ;; holiday-general-holidays etc have no effect. | ||
| 324 | ;; FIXME should have some :set-after. | ||
| 323 | (defcustom calendar-holidays | 325 | (defcustom calendar-holidays |
| 324 | (append holiday-general-holidays holiday-local-holidays | 326 | (append holiday-general-holidays holiday-local-holidays |
| 325 | holiday-other-holidays holiday-christian-holidays | 327 | holiday-other-holidays holiday-christian-holidays |