Skip to content

Commit faee3ef

Browse files
yuhan0bbatsov
authored andcommittedMay 16, 2024
Fix syntax-table class of carriage returns
The syntax table interprets ASCII control chars (including CRs) as symbols in clojure buffers, affecting functions such as (thing-at-point 'symbol) This caused clojure-find-ns to report "^M" as the namespace in some files with \r\n line encodings.
1 parent af0e518 commit faee3ef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎clojure-mode.el

+3-1
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,8 @@ The prefixes are used to generate the correct namespace."
373373
(defvar clojure-mode-syntax-table
374374
(let ((table (make-syntax-table)))
375375
;; Initialize ASCII charset as symbol syntax
376-
(modify-syntax-entry '(0 . 127) "_" table)
376+
;; Control characters from 0-31 default to the punctuation syntax class
377+
(modify-syntax-entry '(32 . 127) "_" table)
377378

378379
;; Word syntax
379380
(modify-syntax-entry '(?0 . ?9) "w" table)
@@ -385,6 +386,7 @@ The prefixes are used to generate the correct namespace."
385386
(modify-syntax-entry ?\xa0 " " table) ; non-breaking space
386387
(modify-syntax-entry ?\t " " table)
387388
(modify-syntax-entry ?\f " " table)
389+
(modify-syntax-entry ?\r " " table)
388390
;; Setting commas as whitespace makes functions like `delete-trailing-whitespace' behave unexpectedly (#561)
389391
(modify-syntax-entry ?, "." table)
390392

0 commit comments

Comments
 (0)
Please sign in to comment.