(insert "\n")
(add-face-text-property start-section (point) 'shortdoc-section t)
(let ((start (point))
- (print-escape-newlines t))
+ (print-escape-newlines t)
+ (double-arrow (if (char-displayable-p ?⇒)
+ "⇒"
+ "=>"))
+ (single-arrow (if (char-displayable-p ?→)
+ "→"
+ "->")))
(cl-loop for (type value) on data by #'cddr
do
(cl-case type
(insert " ")
(prin1 value (current-buffer))
(insert "\n")
- (insert " => ")
+ (insert " " double-arrow " ")
(prin1 (eval value) (current-buffer))
(insert "\n")))
(:no-eval*
(insert " " value "\n")
(insert " ")
(prin1 value (current-buffer)))
- (insert "\n -> "
+ (insert "\n " single-arrow " "
(propertize "[it depends]"
'face 'variable-pitch)
"\n"))
(prin1 value (current-buffer)))
(insert "\n"))
(:result
- (insert " => ")
+ (insert " " double-arrow " ")
(prin1 value (current-buffer))
(insert "\n"))
(:result-string
- (insert " => ")
+ (insert " " double-arrow " ")
(princ value (current-buffer))
(insert "\n"))
(:eg-result
- (insert " eg. => ")
+ (insert " eg. " double-arrow " ")
(prin1 value (current-buffer))
(insert "\n"))
(:eg-result-string
- (insert " eg. => ")
+ (insert " eg. " double-arrow " ")
(princ value (current-buffer))
(insert "\n"))))
(put-text-property start (point) 'face 'shortdoc-example))