Mercurial > emacs
changeset 48374:a6f9803f174f
(defgroup ispell): Arrange that definition starts at beginning of
line.
author | Markus Rost <rost@math.uni-bielefeld.de> |
---|---|
date | Sun, 17 Nov 2002 22:34:13 +0000 |
parents | 4c02bb10da9a |
children | 4d7b83cc03aa |
files | lisp/textmodes/ispell.el |
diffstat | 1 files changed, 7 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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)