ziglang / zig-mode

Zig mode for Emacs
GNU General Public License v3.0
163 stars 54 forks source link

Using new `rx` features means the minimal requirement is emacs 27 #43

Closed larme closed 3 years ago

larme commented 3 years ago

The new zig-mode failed to compile on older version like 26.3. The reason is that emacs 27's rx's regexp and new literal accept arbitrary lisp as arguments while older ones only accept string known at compile time.

So we need to either bump the minimal requirement to 27 or fix it (e.g. by wrapping the entire file inside a macro)

joachimschmidt557 commented 3 years ago

This is a duplicate of #42.

larme commented 3 years ago

sorry missed that one. I will close this issue.