summaryrefslogtreecommitdiff
path: root/lisp/emulation
diff options
context:
space:
mode:
authorMarkus Rost <rost@math.uni-bielefeld.de>2002-11-12 01:41:25 +0000
committerMarkus Rost <rost@math.uni-bielefeld.de>2002-11-12 01:41:25 +0000
commit579a2faac7031b7612970b616600ea9d6ac0f6f0 (patch)
treeddc68213dde1d0aba8c7deb3f511d941cf540ef0 /lisp/emulation
parenteba5244270cdcb50fe503e7aee427f0ec53b1572 (diff)
downloademacs-579a2faac7031b7612970b616600ea9d6ac0f6f0.tar.gz
(defgroup edt): Arrange that definition starts at beginning of line.
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/edt.el15
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 @@
;;;; VARIABLES and CONSTANTS
;;;;
-;; For backward compatibility to Emacs 19, skip this if defgroup is
-;; not defined.
-(if (fboundp 'defgroup)
- (defgroup edt nil
- "Emacs emulating EDT."
- :prefix "edt-"
- :group 'emulations))
+;; For backward compatibility to Emacs 19.
+(or (fboundp 'defgroup)
+ (defmacro defgroup (&rest rest)))
+
+(defgroup edt nil
+ "Emacs emulating EDT."
+ :prefix "edt-"
+ :group 'emulations)
;;;
;;; Version Information