diff lisp/winner.el @ 48248:ee08f1e3d269

(defgroup winner): Handle Emacs 19 compatibility so that definition starts at beginning of line.
author Markus Rost <rost@math.uni-bielefeld.de>
date Mon, 11 Nov 2002 15:04:23 +0000
parents 9e4a1be87f8c
children e88404e8f2cf
line wrap: on
line diff
--- 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)