Skip to content

Commit 7e8f3f1

Browse files
Adjust regexp for |identifier with spaces|; fixes greghendershott#735
1 parent f4fe6dd commit 7e8f3f1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

racket-common.el

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,7 @@ insufficient. See issue #734."
158158
;; Treat |identifier with spaces| -- but not #|comment|# -- as
159159
;; word syntax
160160
((rx (not (any ?#))
161-
(group ?| (*? (not (any ?\" ?\r ?\n))) ?|)
162-
(not (any ?#)))
161+
(group ?| (*? (not (any ?\" ?\r ?\n))) ?|))
163162
(1 "w")))
164163
(point)
165164
end))

0 commit comments

Comments
 (0)