# HG changeset patch # User Markus Rost # Date 1037572453 0 # Node ID a6f9803f174f2db8899caca8206a0bfcdef8164a # Parent 4c02bb10da9ad7ff529a3322840b5c89448f8097 (defgroup ispell): Arrange that definition starts at beginning of line. diff -r 4c02bb10da9a -r a6f9803f174f lisp/textmodes/ispell.el --- a/lisp/textmodes/ispell.el Sun Nov 17 22:31:53 2002 +0000 +++ b/lisp/textmodes/ispell.el Sun Nov 17 22:34:13 2002 +0000 @@ -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)