aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--helpful.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/helpful.el b/helpful.el
index bc47a11..c95805a 100644
--- a/helpful.el
+++ b/helpful.el
@@ -962,11 +962,6 @@ state of the current symbol."
'symbol helpful--sym
'callable-p helpful--callable-p))
- (-when-let (formatted-props (helpful--format-properties helpful--sym))
- (insert
- (helpful--heading "\n\nSymbol Properties\n")
- formatted-props))
-
(when (helpful--advised-p helpful--sym)
(insert
(helpful--heading "\n\nAdvice\n")
@@ -1075,6 +1070,12 @@ state of the current symbol."
(t
(helpful--syntax-highlight
(helpful--pretty-print source))))))
+
+ (-when-let (formatted-props (helpful--format-properties helpful--sym))
+ (insert
+ (helpful--heading "\nSymbol Properties\n")
+ formatted-props))
+
(goto-char (point-min))
(forward-line (1- start-line))
(forward-char start-column)))