From 0758324d0a177b894adfa3b113eb3544c4859ded Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sat, 6 Feb 2016 23:31:10 +0000 Subject: Switch to grave quotes for consistency with other places --- cider-macroexpansion.el | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'cider-macroexpansion.el') diff --git a/cider-macroexpansion.el b/cider-macroexpansion.el index e4fe2a4d..3b87d31d 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")) -- cgit v1.2.3