comparison lisp/textmodes/ispell.el @ 91302:56a72e2bd635

Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-306
author Miles Bader <miles@gnu.org>
date Sat, 29 Dec 2007 02:39:17 +0000
parents 53108e6cea98 20bb7aaa7b12
children c938ab6810a4
comparison
equal deleted inserted replaced
91301:7774e5860c70 91302:56a72e2bd635
200 200
201 201
202 ;;; Code: 202 ;;; Code:
203 203
204 (defvar mail-yank-prefix) 204 (defvar mail-yank-prefix)
205
206 ;;; Custom.el macros require recompiling this when they are not present.
207 ;;; Add in backward compatible custom support.
208 (eval-when-compile
209 (if (not (fboundp 'defcustom))
210 (defmacro defcustom (symbol value doc &rest args)
211 "Empty replacement for defcustom when not supplied."
212 `(defvar ,symbol ,value ,doc))))
213
214 (eval-when-compile
215 (if (not (fboundp 'defgroup))
216 (defmacro defgroup (&rest args)
217 "Empty replacement for defgroup when not supplied.")))
218 205
219 (defgroup ispell nil 206 (defgroup ispell nil
220 "User variables for Emacs ispell interface." 207 "User variables for Emacs ispell interface."
221 :group 'applications) 208 :group 'applications)
222 209