diff options
| author | Markus Rost | 2002-11-17 22:34:13 +0000 |
|---|---|---|
| committer | Markus Rost | 2002-11-17 22:34:13 +0000 |
| commit | 87a609d3fb43ab67d043ae2462ac5aacff9381c1 (patch) | |
| tree | 83c5746f152cafd934387cd1bb5b16256e837abd /lisp | |
| parent | 23179a73c30c47fd337c6294fed30f8938835ae5 (diff) | |
| download | emacs-87a609d3fb43ab67d043ae2462ac5aacff9381c1.tar.gz emacs-87a609d3fb43ab67d043ae2462ac5aacff9381c1.zip | |
(defgroup ispell): Arrange that definition starts at beginning of
line.
Diffstat (limited to 'lisp')
| -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 @@ | |||
| 191 | `(defvar ,symbol ,value ,doc)))) | 191 | `(defvar ,symbol ,value ,doc)))) |
| 192 | 192 | ||
| 193 | (eval-when-compile | 193 | (eval-when-compile |
| 194 | (if (fboundp 'defgroup) | 194 | (if (not (fboundp 'defgroup)) |
| 195 | (defgroup ispell nil | 195 | (defmacro defgroup (&rest args) |
| 196 | "User variables for emacs ispell interface." | 196 | "Empty replacement for defgroup when not supplied."))) |
| 197 | :group 'applications))) | 197 | |
| 198 | (defgroup ispell nil | ||
| 199 | "User variables for emacs ispell interface." | ||
| 200 | :group 'applications) | ||
| 198 | 201 | ||
| 199 | (if (not (fboundp 'buffer-substring-no-properties)) | 202 | (if (not (fboundp 'buffer-substring-no-properties)) |
| 200 | (defun buffer-substring-no-properties (start end) | 203 | (defun buffer-substring-no-properties (start end) |