Mercurial > emacs
changeset 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 | 80e9d4652a07 |
children | 4da41542c6ed |
files | lisp/winner.el |
diffstat | 1 files changed, 6 insertions(+), 4 deletions(-) [+] |
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)