diff options
| author | Glenn Morris | 2008-02-22 03:58:56 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-02-22 03:58:56 +0000 |
| commit | 1eb2d407153eda24a92a7d5e1f120cbfe39edc51 (patch) | |
| tree | 209a614706cefdde5f99bc3ee446aaa9735a2455 | |
| parent | 5693f325afa0eff72149cce040cbb86aa5460976 (diff) | |
| download | emacs-1eb2d407153eda24a92a7d5e1f120cbfe39edc51.tar.gz emacs-1eb2d407153eda24a92a7d5e1f120cbfe39edc51.zip | |
(top-level): No need to require time-date when compiling.
| -rw-r--r-- | lisp/ChangeLog | 24 | ||||
| -rw-r--r-- | lisp/time.el | 2 |
2 files changed, 24 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cee818996a2..559347d6f09 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,27 @@ | |||
| 1 | 2008-02-22 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * json.el (top-level): No need to require thingatpt. | ||
| 4 | (json-read-keyword): Use thing-at-point rather than word-at-point. | ||
| 5 | |||
| 6 | * time.el (top-level): No need to require time-date when compiling. | ||
| 7 | |||
| 8 | * emacs-lisp/copyright.el (copyright-update-year): Fix | ||
| 9 | subexpression numbering for the case when years are split over | ||
| 10 | lines, and for the replace case. | ||
| 11 | |||
| 12 | * emulation/tpu-edt.el (tpu-have-ispell): Doc fix. Make obsolete. | ||
| 13 | (tpu-caar, tpu-cadr): Delete functions. | ||
| 14 | (zmacs-regions): No need to declare for compiler. | ||
| 15 | (tpu-goto-breadcrumb): Use cadr rather than tpu-cadr. | ||
| 16 | (tpu-spell-check): Rewrite, and handle mark after point. | ||
| 17 | (tpu-special-insert): Use or rather than if. | ||
| 18 | |||
| 19 | * emulation/vip.el (vip-special-prefix-com): Use ispell-region | ||
| 20 | rather than spell-region. | ||
| 21 | |||
| 22 | * textmodes/spell.el (spell-buffer, spell-word): Suppress compiler | ||
| 23 | warnings about spell-region. | ||
| 24 | |||
| 1 | 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp> | 25 | 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp> |
| 2 | 26 | ||
| 3 | * loadup.el: Don't load language/devanagari, language/kannanda, | 27 | * loadup.el: Don't load language/devanagari, language/kannanda, |
diff --git a/lisp/time.el b/lisp/time.el index 63bc23c459b..d889a7c7531 100644 --- a/lisp/time.el +++ b/lisp/time.el | |||
| @@ -32,8 +32,6 @@ | |||
| 32 | 32 | ||
| 33 | ;;; Code: | 33 | ;;; Code: |
| 34 | 34 | ||
| 35 | (eval-when-compile (require 'time-date)) | ||
| 36 | |||
| 37 | (defgroup display-time nil | 35 | (defgroup display-time nil |
| 38 | "Display time and load in mode line of Emacs." | 36 | "Display time and load in mode line of Emacs." |
| 39 | :group 'mode-line | 37 | :group 'mode-line |