aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/artist.el24
1 files changed, 12 insertions, 12 deletions
diff --git a/lisp/textmodes/artist.el b/lisp/textmodes/artist.el
index 3ace091f018..73fc15b6fbf 100644
--- a/lisp/textmodes/artist.el
+++ b/lisp/textmodes/artist.el
@@ -192,18 +192,18 @@
192 192
193 193
194(eval-and-compile 194(eval-and-compile
195 (condition-case () 195 (condition-case ()
196 (require 'custom) 196 (require 'custom)
197 (error nil)) 197 (error nil))
198 (if (and (featurep 'custom) (fboundp 'custom-declare-variable)) 198 (if (and (featurep 'custom) (fboundp 'custom-declare-variable))
199 nil ;; We've got what we needed 199 nil ;; We've got what we needed
200 ;; We have the old custom-library, hack around it! 200 ;; We have the old custom-library, hack around it!
201 (defmacro defgroup (&rest args) 201 (defmacro defgroup (&rest args)
202 nil) 202 nil)
203 (defmacro defface (var values doc &rest args) 203 (defmacro defface (var values doc &rest args)
204 (` (make-face (, var)))) 204 `(make-face ,var))
205 (defmacro defcustom (var value doc &rest args) 205 (defmacro defcustom (var value doc &rest args)
206 (` (defvar (, var) (, value) (, doc)))))) 206 `(defvar ,var ,value ,doc))))
207 207
208;; User options 208;; User options
209;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv 209;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv