Skip to content

Commit 06dce8e

Browse files
committed
Delurk old tokenizer helper function
1 parent 51e52ed commit 06dce8e

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

elixir-smie.el

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,6 @@
3333
(modify-syntax-entry ?\n "." table)
3434
table))
3535

36-
(defun elixir-smie-token-navigator (regex-match match-bound char-position sexp-movement)
37-
(let ((found-token-class (find-if
38-
(lambda (class-def)
39-
(funcall regex-match (symbol-value (car class-def))))
40-
elixir-syntax-class-names)))
41-
(cond ((eq ?\n (funcall char-position))
42-
"\n")
43-
(found-token-class
44-
(goto-char (funcall match-bound 0))
45-
(cdr found-token-class))
46-
((when (= ?\" (char-syntax (funcall char-position)))
47-
(funcall sexp-movement)
48-
"STRING")))))
49-
5036
(setq elixir-smie-block-intro-keywords '(do else catch after rescue -> COMMA))
5137

5238
(defun elixir-smie-next-token-no-lookaround (forwardp nested)

0 commit comments

Comments
 (0)