summaryrefslogtreecommitdiff
path: root/rust-mode.el
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2017-11-06 06:10:45 -0700
committerGitHub <noreply@github.com>2017-11-06 06:10:45 -0700
commit04e3078ffc5f4b95e0a62960e36866d4bf1a9537 (patch)
treed7fd8fe31541f2443699f8bfe79c7f21b68d92f2 /rust-mode.el
parentb8e49089713714a9f3f815b399df569a0e507e73 (diff)
parentb7cd368e870ba2598a8b8bb54a6ba40e719db4e2 (diff)
downloadrust-mode-04e3078ffc5f4b95e0a62960e36866d4bf1a9537.tar.gz
Merge pull request #244 from kubo39/percent-as-punctuation-character
% as punctuation character.
Diffstat (limited to 'rust-mode.el')
-rw-r--r--rust-mode.el2
1 files changed, 1 insertions, 1 deletions
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