Skip to content

Commit 2903f94

Browse files
committed
Clean up unused code.
1 parent d1d8b25 commit 2903f94

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

elixir-smie.el

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,6 @@
8888
(message (format ,message ,@format-args)))
8989
nil))
9090

91-
(defun elixir-smie--at-dot-call ()
92-
(and (eq ?w (char-syntax (following-char)))
93-
(eq (char-before) ?.)
94-
(not (eq (char-before (1- (point))) ?.))))
95-
9691
(defun elixir-smie--implicit-semi-p ()
9792
(not (or (memq (char-before) '(?\{ ?\[))
9893
(looking-back elixir-smie--operator-regexp (- (point) 3) t))))
@@ -136,10 +131,6 @@
136131
((smie-rule-sibling-p) nil)
137132
((smie-rule-hanging-p) (smie-rule-parent elixir-smie-indent-basic))
138133
(t elixir-smie-indent-basic)))
139-
;; If the parent token of `->' is `fn', then we want to align to the
140-
;; parent, and offset by `elixir-smie-indent-basic'. Otherwise, indent
141-
;; normally. This helps us work with/indent anonymous function blocks
142-
;; correctly.
143134
(`(:before . ";")
144135
(cond
145136
((smie-rule-parent-p "after" "catch" "def" "defmodule" "defp" "do" "else"

0 commit comments

Comments
 (0)