summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2015-05-18 12:23:18 -0600
committerTom Tromey <tom@tromey.com>2015-05-22 14:27:52 -0600
commitb4ff35c6561472955bd7f0d2e902d34edc3f9b20 (patch)
tree13c8884773368c9c002e8b5b5eb5cb697ee5f670
parent86db9bdb55e9812425f4c9ece47b1bc2b5dd836b (diff)
downloadrust-mode-b4ff35c6561472955bd7f0d2e902d34edc3f9b20.tar.gz
remove rust-mode-character-literal-syntax-table
Fix #53
-rw-r--r--rust-mode.el7
1 files changed, 0 insertions, 7 deletions
diff --git a/rust-mode.el b/rust-mode.el
index 58df76d..0635f0c 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -40,13 +40,6 @@
table))
-(defvar rust-mode-character-literal-syntax-table
- (let ((table (make-syntax-table rust-mode-syntax-table)))
- (modify-syntax-entry ?' "\"" table)
- (modify-syntax-entry ?\" "_" table)
-
- table))
-
(defgroup rust-mode nil
"Support for Rust code."
:link '(url-link "http://www.rust-lang.org/")