Skip to content

Commit 976a219

Browse files
committed
Use optional symbol.
1 parent 193c601 commit 976a219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

elixir-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@
290290
(identifiers . ,(rx symbol-start
291291
(one-or-more (any "A-Z" "a-z""_"))
292292
(zero-or-more (any "0-9"))
293-
(zero-or-one (or "!" "?"))
293+
(optional (or "?" "!"))
294294
symbol-end))
295295
(atoms . ,(rx ":"
296296
(or

0 commit comments

Comments
 (0)