We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59e25f5 commit fe44efdCopy full SHA for fe44efd
lispy.el
@@ -7393,7 +7393,9 @@ See https://clojure.org/guides/weird_characters#_character_literal.")
7393
(lispy--read-replace " *,+" "clojure-commas"))
7394
;; ——— \ char syntax (LISP)————
7395
(goto-char (point-min))
7396
- (while (re-search-forward "#\\\\\\(.\\)" nil t)
+ (while (let ((case-fold-search nil))
7397
+ ;; http://lispworks.com/documentation/HyperSpec/Body/02_ac.htm
7398
+ (re-search-forward "#\\\\\\(space\\|newline\\|.\\)" nil t))
7399
(unless (lispy--in-string-or-comment-p)
7400
(replace-match (format "(ly-raw lisp-char %S)"
7401
(substring-no-properties
0 commit comments