vim-erlang/vim-erlang-runtime

Remove "query" keyword

hcs42 opened this issue · 3 comments

Remove "query" keyword

It's a reserved word, isn't it?

Not since R16B:

(r15b01)~$ erl
Erlang R15B01 (erts-5.9.1) [source] [64-bit] [smp:4:4] [async-threads:0] [hipe] [kernel-poll:false]

Eshell V5.9.1  (abort with ^G)
1> query.
* 1: syntax error before: '.'
1>

(r16a-a)~$ erl
Erlang R16A (erts-5.10) [source] [64-bit] [smp:4:4] [async-threads:10] [kernel-poll:false]

Eshell V5.10  (abort with ^G)
1> query.
query
2>

This is the commit in which the 'query' keyword was removed from Erlang/OTP.

nice!