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):
(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.
;;;; 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