aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2000-08-16 20:50:19 +0000
committerStefan Monnier2000-08-16 20:50:19 +0000
commita313af117c78741a71e7ccf28c3da71ef25d371a (patch)
tree075d4adf9c53c1b327a52e900919eefbe56c38a2
parent6a7ceddcab9071463e92d73e8dc16412ad776ad0 (diff)
downloademacs-a313af117c78741a71e7ccf28c3da71ef25d371a.tar.gz
emacs-a313af117c78741a71e7ccf28c3da71ef25d371a.zip
(custom-make-dependencies): Quote open-paren in string.
-rw-r--r--lisp/cus-dep.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el
index 4ce2932ab72..466f9b5be0b 100644
--- a/lisp/cus-dep.el
+++ b/lisp/cus-dep.el
@@ -116,7 +116,7 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS"
116;;; variables and groups if it's already set. (We don't know when 116;;; variables and groups if it's already set. (We don't know when
117;;; cus-load.el is going to be loaded and at that time some of the 117;;; cus-load.el is going to be loaded and at that time some of the
118;;; files might be loaded and some others might not). 118;;; files might be loaded and some others might not).
119(defmacro custom-put-if-not (symbol propname value) 119\(defmacro custom-put-if-not (symbol propname value)
120 `(unless (get ,symbol ,propname) 120 `(unless (get ,symbol ,propname)
121 (put ,symbol ,propname ,value))) 121 (put ,symbol ,propname ,value)))
122 122