aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--helpful.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/helpful.el b/helpful.el
index dac3b1c..f7dbb0e 100644
--- a/helpful.el
+++ b/helpful.el
@@ -652,7 +652,8 @@ For example, \"(some-func FOO &optional BAR)\"."
;; TODO: Info mentions, e.g. `define-derived-mode' or `defface'.
(defun helpful--docstring (sym callable-p)
"Get the docstring for SYM."
- (let (docstring)
+ (let ((text-quoting-style 'grave)
+ docstring)
(if callable-p
(progn
(setq docstring (documentation sym))