diff options
| author | Sam Steingold | 2001-11-27 15:52:52 +0000 |
|---|---|---|
| committer | Sam Steingold | 2001-11-27 15:52:52 +0000 |
| commit | 8a9463543d5b82409a24e23905d271cdebf70059 (patch) | |
| tree | 503c81c7058491327cc13ab0eff04ed5dc6dd855 /lisp/textmodes | |
| parent | c6aedc9284492c790448cce23b0e5cc134885148 (diff) | |
| download | emacs-8a9463543d5b82409a24e23905d271cdebf70059.tar.gz emacs-8a9463543d5b82409a24e23905d271cdebf70059.zip | |
Converted backquote to the new style.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/artist.el | 24 |
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 |