]> git.eshelyaron.com Git - emacs.git/commitdiff
(defgroup edt): Arrange that definition starts at beginning of line.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Tue, 12 Nov 2002 01:42:32 +0000 (01:42 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Tue, 12 Nov 2002 01:42:32 +0000 (01:42 +0000)
lisp/ChangeLog
lisp/emulation/edt.el

index a62d7a4a76c8822c6280a5e9185259ec035239fd..d20ad6927b9b46d0bf7a10fc38308b714dbac335 100644 (file)
@@ -1,5 +1,8 @@
 2002-11-12   Markus Rost  <rost@math.ohio-state.edu>
 
+       * emulation/edt.el (defgroup edt): Arrange that definition starts
+       at beginning of line.
+
        * ls-lisp.el (defgroup ls-lisp): Remove autoload cookie.
 
        * hi-lock.el (defgroup hi-lock-interactive-text-highlighting):
@@ -16,8 +19,8 @@
        (custom-make-dependencies):  Handle :version also for autoloaded
        options.
 
-       * winner.el (defgroup winner): Handle Emacs 19 compatibility so
-       that definition starts at beginning of line.
+       * winner.el (defgroup winner): Arrange that definition starts at
+       beginning of line.
 
        * emulation/edt.el: Simplify Emacs 19 compatibility.
 
index 43b7b9ec6c1202fb00eff3e018e21142774ec6be..ecb53bdffbf04c07691168b1d78600c78011a886 100644 (file)
 ;;;; 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