diff options
author | Markus Rost <rost@math.uni-bielefeld.de> | 2002-11-17 22:34:13 +0000 |
---|---|---|
committer | Markus Rost <rost@math.uni-bielefeld.de> | 2002-11-17 22:34:13 +0000 |
commit | 87a609d3fb43ab67d043ae2462ac5aacff9381c1 (patch) | |
tree | 83c5746f152cafd934387cd1bb5b16256e837abd /lisp/textmodes | |
parent | 23179a73c30c47fd337c6294fed30f8938835ae5 (diff) | |
download | emacs-87a609d3fb43ab67d043ae2462ac5aacff9381c1.tar.gz |
(defgroup ispell): Arrange that definition starts at beginning of
line.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/ispell.el | 11 |
1 files changed, 7 insertions, 4 deletions
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) |