Function composition is broken

Issue #630 closed
Tey' created an issue

Calling functions from function arguments is broken since 9233f36c. For instance, the following expressions fail:

log(10;abs(100))
=> ": unknown function or variable"
log(10;log(10;10))
=> "log: wrong number of arguments"
log(10;abs(100;10))
=> "invalid expression" (should be "abs: wrong number of arguments")

The problem occurs with functions that take a fixed number of arguments but greater than 1.

Comments (4)

  1. Log in to comment