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 /lisp/emulation | |
| parent | 513bcaece93e539a5f71923da56817be4ae52a81 (diff) | |
| download | emacs-71c37e3fc0a65cfd063f586ae515f8e54a1cd26d.tar.gz emacs-71c37e3fc0a65cfd063f586ae515f8e54a1cd26d.zip | |
(defgroup edt): Arrange that definition starts at beginning of line.
Diffstat (limited to 'lisp/emulation')
| -rw-r--r-- | lisp/emulation/edt.el | 15 |
1 files changed, 8 insertions, 7 deletions
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 |