branch: elpa/graphql-mode
commit 83cba48fd8fd87e24167143f486c40de80ce3db4
Author: David Vazquez Pua <[email protected]>
Commit: David Vazquez Pua <[email protected]>
Remove unnecessary syntax
The removed syntax entries are also present in the parent syntax table
inherited from prog-mode, so they are not needed.
---
graphql.el | 5 -----
1 file changed, 5 deletions(-)
diff --git a/graphql.el b/graphql.el
index 00e49c4934..f4ba3b72a8 100644
--- a/graphql.el
+++ b/graphql.el
@@ -91,13 +91,8 @@ response from the server."
(defvar graphql-mode-syntax-table
(let ((st (make-syntax-table)))
- (modify-syntax-entry ?\" "\"" st)
(modify-syntax-entry ?\# "<" st)
(modify-syntax-entry ?\n ">" st)
- (modify-syntax-entry ?\( "()" st)
- (modify-syntax-entry ?\) ")(" st)
- (modify-syntax-entry ?\{ "(}" st)
- (modify-syntax-entry ?\} "){" st)
st))