Closed phoe closed 6 years ago
https://github.com/TBRSS/overlord/blob/a2380a4b4638be7d5220b3df7665e09ca2f1ff71/importing.lisp#L156
#+() is in fact #+NIL and will trigger if someone pushes NIL into *FEATURES*.
#+()
#+NIL
NIL
*FEATURES*
Please replace it with #+(or) which is guaranteed to never fire.
#+(or)
Solved by #7.
https://github.com/TBRSS/overlord/blob/a2380a4b4638be7d5220b3df7665e09ca2f1ff71/importing.lisp#L156
#+()
is in fact#+NIL
and will trigger if someone pushesNIL
into*FEATURES*
.Please replace it with
#+(or)
which is guaranteed to never fire.