diff options
| author | Markus Rost | 2002-11-12 01:42:32 +0000 |
|---|---|---|
| committer | Markus Rost | 2002-11-12 01:42:32 +0000 |
| commit | 71c37e3fc0a65cfd063f586ae515f8e54a1cd26d (patch) | |
| tree | ff1eeb304da535531ad190011f52d1e1fa96d533 | |
| parent | 513bcaece93e539a5f71923da56817be4ae52a81 (diff) | |
| download | emacs-71c37e3fc0a65cfd063f586ae515f8e54a1cd26d.tar.gz emacs-71c37e3fc0a65cfd063f586ae515f8e54a1cd26d.zip | |
(defgroup edt): Arrange that definition starts at beginning of line.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/emulation/edt.el | 15 |
2 files changed, 13 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a62d7a4a76c..d20ad6927b9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2002-11-12 Markus Rost <rost@math.ohio-state.edu> | 1 | 2002-11-12 Markus Rost <rost@math.ohio-state.edu> |
| 2 | 2 | ||
| 3 | * emulation/edt.el (defgroup edt): Arrange that definition starts | ||
| 4 | at beginning of line. | ||
| 5 | |||
| 3 | * ls-lisp.el (defgroup ls-lisp): Remove autoload cookie. | 6 | * ls-lisp.el (defgroup ls-lisp): Remove autoload cookie. |
| 4 | 7 | ||
| 5 | * hi-lock.el (defgroup hi-lock-interactive-text-highlighting): | 8 | * hi-lock.el (defgroup hi-lock-interactive-text-highlighting): |
| @@ -16,8 +19,8 @@ | |||
| 16 | (custom-make-dependencies): Handle :version also for autoloaded | 19 | (custom-make-dependencies): Handle :version also for autoloaded |
| 17 | options. | 20 | options. |
| 18 | 21 | ||
| 19 | * winner.el (defgroup winner): Handle Emacs 19 compatibility so | 22 | * winner.el (defgroup winner): Arrange that definition starts at |
| 20 | that definition starts at beginning of line. | 23 | beginning of line. |
| 21 | 24 | ||
| 22 | * emulation/edt.el: Simplify Emacs 19 compatibility. | 25 | * emulation/edt.el: Simplify Emacs 19 compatibility. |
| 23 | 26 | ||
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el index 43b7b9ec6c1..ecb53bdffbf 100644 --- a/lisp/emulation/edt.el +++ b/lisp/emulation/edt.el | |||
| @@ -166,13 +166,14 @@ | |||
| 166 | ;;;; VARIABLES and CONSTANTS | 166 | ;;;; VARIABLES and CONSTANTS |
| 167 | ;;;; | 167 | ;;;; |
| 168 | 168 | ||
| 169 | ;; For backward compatibility to Emacs 19, skip this if defgroup is | 169 | ;; For backward compatibility to Emacs 19. |
| 170 | ;; not defined. | 170 | (or (fboundp 'defgroup) |
| 171 | (if (fboundp 'defgroup) | 171 | (defmacro defgroup (&rest rest))) |
| 172 | (defgroup edt nil | 172 | |
| 173 | "Emacs emulating EDT." | 173 | (defgroup edt nil |
| 174 | :prefix "edt-" | 174 | "Emacs emulating EDT." |
| 175 | :group 'emulations)) | 175 | :prefix "edt-" |
| 176 | :group 'emulations) | ||
| 176 | 177 | ||
| 177 | ;;; | 178 | ;;; |
| 178 | ;;; Version Information | 179 | ;;; Version Information |