On 2014-02-01 20:16, Peter Bex wrote:
> [...]
>     (if (and deployed (or (eq? (software-version) 'freebsd)
> -                         (eq? (software-version) 'openbsd)))
> +                         (eq? (software-version) 'openbsd)
> +                         (eq? (software-version) 'netbsd)))
>         (list "-Wl,-z,origin")
>         '())
> [...]

Hello,

the longer that disjunction of conditions gets, the more I feel that
something like

  (if (and deployed (memq (software-version) '(freebsd openbsd netbsd)))
      ...)

would look nicer ;-)

Ciao,
Thomas


-- 
When C++ is your hammer, every problem looks like your thumb.


_______________________________________________
Chicken-hackers mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/chicken-hackers

Reply via email to