aboutsummaryrefslogtreecommitdiffhomepage
path: root/mmm
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2008-01-28 23:29:27 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2008-01-28 23:29:27 +0000
commit01dcd681219ea84b41fb4607520344a7bb716198 (patch)
tree23190417f991322cc4ac6092fcb77bd23aa53d20 /mmm
parent351f3b01b8c799fcfe6b6493b7a66cd8bb52e937 (diff)
Backquote syntax updated to defeat warnings, so not Emacs <19.29 compatible
Diffstat (limited to 'mmm')
-rw-r--r--mmm/mmm-compat.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/mmm/mmm-compat.el b/mmm/mmm-compat.el
index d60570b3..bb22446b 100644
--- a/mmm/mmm-compat.el
+++ b/mmm/mmm-compat.el
@@ -54,7 +54,7 @@
(set keyword keyword))
;;}}}
-;;{{{ Customization (Emacs 19)
+;;{{{ Customization (Emacs 19)
(condition-case ()
(require 'custom)
@@ -64,10 +64,11 @@
(fboundp 'custom-declare-variable))
(defmacro defgroup (&rest args)
nil)
+ ;; da: backquote syntax updated, so not Emacs <19.29 compatible
(defmacro defface (var values doc &rest args)
- (` (make-face (quote (, var)))))
+ `(make-face (quote ,var)))
(defmacro defcustom (var value doc &rest args)
- (` (defvar (, var) (, value) (, doc)))))
+ `(defvar ,var ,value ,doc)))
;;}}}
;;{{{ Regexp-Opt (Emacs 19)