From ed0d58c91f39858b5df64813336a173da93f7d80 Mon Sep 17 00:00:00 2001 From: Markus Rost Date: Mon, 11 Nov 2002 15:04:23 +0000 Subject: [PATCH] (defgroup winner): Handle Emacs 19 compatibility so that definition starts at beginning of line. --- lisp/winner.el | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lisp/winner.el b/lisp/winner.el index 56fbf4bc47e..68c1df9f2b5 100644 --- a/lisp/winner.el +++ b/lisp/winner.el @@ -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) -- 2.39.2