branch: elpa/rust-mode
commit 04e3078ffc5f4b95e0a62960e36866d4bf1a9537
Merge: b8e4908 b7cd368
Author: Tom Tromey <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #244 from kubo39/percent-as-punctuation-character
    
    % as punctuation character.
---
 rust-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rust-mode.el b/rust-mode.el
index 8b729f9..5ce194e 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -84,7 +84,7 @@
   (let ((table (make-syntax-table)))
 
     ;; Operators
-    (dolist (i '(?+ ?- ?* ?/ ?& ?| ?^ ?! ?< ?> ?~ ?@))
+    (dolist (i '(?+ ?- ?* ?/ ?% ?& ?| ?^ ?! ?< ?> ?~ ?@))
       (modify-syntax-entry i "." table))
 
     ;; Strings

Reply via email to