summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2016-02-06 23:22:51 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2016-02-06 23:23:10 +0000
commitcbe74f0b3459481879d081894f7295c9ed4a4814 (patch)
treec5ff79c356b70b0fcab2e8fa10cbf479cc3cd7b6
parent463c3dc0f78d66a9c3163c16336657fda7257f99 (diff)
Escape some quotes
-rw-r--r--cider-macroexpansion.el16
1 files changed, 8 insertions, 8 deletions
diff --git a/cider-macroexpansion.el b/cider-macroexpansion.el
index eccf9c6d..e4fe2a4d 100644
--- a/cider-macroexpansion.el
+++ b/cider-macroexpansion.el
@@ -108,29 +108,29 @@ This variable specifies both what was expanded and the expander.")
;;;###autoload
(defun cider-macroexpand-1 (&optional prefix)
- "Invoke 'macroexpand-1' on the expression preceding point.
-If invoked with a PREFIX argument, use 'macroexpand' instead of
-'macroexpand-1'."
+ "Invoke \\='macroexpand-1\\=' on the expression preceding point.
+If invoked with a PREFIX argument, use \\='macroexpand\\=' instead of
+\\='macroexpand-1\\='."
(interactive "P")
(let ((expander (if prefix "macroexpand" "macroexpand-1")))
(cider-macroexpand-expr expander (cider-last-sexp))))
(defun cider-macroexpand-1-inplace (&optional prefix)
- "Perform inplace 'macroexpand-1' on the expression preceding point.
-If invoked with a PREFIX argument, use 'macroexpand' instead of
-'macroexpand-1'."
+ "Perform inplace \\='macroexpand-1\\=' on the expression preceding point.
+If invoked with a PREFIX argument, use \\='macroexpand\\=' instead of
+\\='macroexpand-1\\='."
(interactive "P")
(let ((expander (if prefix "macroexpand" "macroexpand-1")))
(cider-macroexpand-expr-inplace expander)))
;;;###autoload
(defun cider-macroexpand-all ()
- "Invoke 'clojure.walk/macroexpand-all' on the expression preceding point."
+ "Invoke \\='clojure.walk/macroexpand-all\\=' on the expression preceding point."
(interactive)
(cider-macroexpand-expr "macroexpand-all" (cider-last-sexp)))
(defun cider-macroexpand-all-inplace ()
- "Perform inplace 'clojure.walk/macroexpand-all' on the expression preceding point."
+ "Perform inplace \\='clojure.walk/macroexpand-all\\=' on the expression preceding point."
(interactive)
(cider-macroexpand-expr-inplace "macroexpand-all"))