From b91f0f046d7d0a774ddb85a1a92433bb5d599425 Mon Sep 17 00:00:00 2001 From: Ruijie Yu Date: Sun, 30 Apr 2023 10:02:44 +0800 Subject: [PATCH] * lispy.el (lispy-tab): let-bind `read-positining-symbols' (bug#659) --- lispy.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lispy.el b/lispy.el index 0c5c9720..99fdbfef 100644 --- a/lispy.el +++ b/lispy.el @@ -5036,7 +5036,8 @@ Sexp is obtained by exiting the list ARG times." "Indent code and hide/show outlines. When region is active, call `lispy-mark-car'." (interactive) - (let (outline-eval-tag) + (let ((read-symbol-shorthands nil) ; bug#659 + outline-eval-tag) (cond ((region-active-p) (lispy-mark-car)) ((looking-at lispy-outline)