From: Markus Rost Date: Sun, 17 Nov 2002 22:34:13 +0000 (+0000) Subject: (defgroup ispell): Arrange that definition starts at beginning of X-Git-Tag: ttn-vms-21-2-B4~12411 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=87a609d3fb43ab67d043ae2462ac5aacff9381c1;p=emacs.git (defgroup ispell): Arrange that definition starts at beginning of line. --- diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 30b1c71f97b..c7a8ac9fc4e 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -191,10 +191,13 @@ `(defvar ,symbol ,value ,doc)))) (eval-when-compile - (if (fboundp 'defgroup) - (defgroup ispell nil - "User variables for emacs ispell interface." - :group 'applications))) + (if (not (fboundp 'defgroup)) + (defmacro defgroup (&rest args) + "Empty replacement for defgroup when not supplied."))) + +(defgroup ispell nil + "User variables for emacs ispell interface." + :group 'applications) (if (not (fboundp 'buffer-substring-no-properties)) (defun buffer-substring-no-properties (start end)