# HG changeset patch # User Markus Rost # Date 1037027063 0 # Node ID ee08f1e3d2692af291036766ad4152bd16c5cf4f # Parent 80e9d4652a0781ce474a4eca95d49882428e1cae (defgroup winner): Handle Emacs 19 compatibility so that definition starts at beginning of line. diff -r 80e9d4652a07 -r ee08f1e3d269 lisp/winner.el --- a/lisp/winner.el Mon Nov 11 14:53:20 2002 +0000 +++ b/lisp/winner.el Mon Nov 11 15:04:23 2002 +0000 @@ -70,10 +70,12 @@ (require 'ring) -(when (fboundp 'defgroup) - (defgroup winner nil - "Restoring window configurations." - :group 'windows)) +(unless (fboundp 'defgroup) + (defmacro defgroup (&rest rest))) + +(defgroup winner nil + "Restoring window configurations." + :group 'windows) (unless (fboundp 'defcustom) (defmacro defcustom (symbol &optional initvalue docs &rest rest)