vim-erlang / vim-erlang-runtime

Erlang indentation and syntax for Vim
https://vim-erlang.github.io
101 stars 29 forks source link

Remove "query" keyword #18

Closed hcs42 closed 10 years ago

aerosol commented 10 years ago

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

hcs42 commented 10 years ago

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.

aerosol commented 10 years ago

nice!