1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

(defgroup winner): Handle Emacs 19 compatibility so that definition

starts at beginning of line.
This commit is contained in:
Markus Rost 2002-11-11 15:04:23 +00:00
parent bca3689a2c
commit ed0d58c91f

View File

@ -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)