# HG changeset patch # User Markus Rost # Date 1037065285 0 # Node ID c283da384991fbc6910cba4414d25a226c3f7c51 # Parent df79fd836e09c9dc7096692bd0d3a060b80dcdc7 (defgroup edt): Arrange that definition starts at beginning of line. diff -r df79fd836e09 -r c283da384991 lisp/emulation/edt.el --- a/lisp/emulation/edt.el Tue Nov 12 00:11:30 2002 +0000 +++ b/lisp/emulation/edt.el Tue Nov 12 01:41:25 2002 +0000 @@ -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