]> git.eshelyaron.com Git - emacs.git/commitdiff
(defgroup ispell): Arrange that definition starts at beginning of
authorMarkus Rost <rost@math.uni-bielefeld.de>
Sun, 17 Nov 2002 22:34:13 +0000 (22:34 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Sun, 17 Nov 2002 22:34:13 +0000 (22:34 +0000)
line.

lisp/textmodes/ispell.el

index 30b1c71f97b539865e16c3202d5059d0e14b749a..c7a8ac9fc4e91b839bac4f760bebc4fe630f50ac 100644 (file)
        `(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)