]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix last change
authorEli Zaretskii <eliz@gnu.org>
Sat, 3 Jun 2023 08:34:11 +0000 (11:34 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 3 Jun 2023 08:34:11 +0000 (11:34 +0300)
* lisp/progmodes/rust-ts-mode.el
(rust-ts-mode--syntax-propertize): Doc fix.  (Bug#63708)

lisp/progmodes/rust-ts-mode.el

index 360fcc89491f3e613a677074d2df86b1253574d2..c3cf8d0cf44cd68e010662f2c57989719e15c52f 100644 (file)
@@ -350,10 +350,12 @@ Return nil if there is no name or if NODE is not a defun node."
       (treesit-node-child-by-field-name node "name") t))))
 
 (defun rust-ts-mode--syntax-propertize (beg end)
-  "Apply syntax properties to various special characters with
+  "Apply syntax properties to special characters between BEG and END.
+
+Apply syntax properties to various special characters with
 contextual meaning between BEG and END.
 
-' should be treated as string when used for char literals.
+The apostrophe \\=' should be treated as string when used for char literals.
 
 < and > are usually punctuation, e.g., as greater/less-than.  But
 when used for types, they should be considered pairs.