mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-09 00:39:47 +08:00
![Kurtis Rader](/assets/img/avatar_default.png)
First step in fixing issue #3157 is to check-in the source code and hook it into our build system. The inclusion of the MuParser source adds the MIT License to those that apply to fish. Update our documentation to reflect that fact. The MuParser documentation is at http://beltoforion.de/article.php?a=muparser. The source was downloaded from https://github.com/beltoforion/muparser/releases. It is also hosted on Github, https://github.com/beltoforion/muparser/. I did not download it from Github because that source contained just a couple of cleanup changes which don't affect its behavior.
627 B
627 B
Math expression evaluation
Fish 1.x and 2.x releases relied on the bc
command for handling math expressions via the math
command. Starting with fish 3.0.0 fish uses the MuParser library. It's documentation is here and the source was downloaded from here. It is also hosted on Github. I did not download it from Github because that source contained just a couple of cleanup changes which don't affect its behavior. See issue #3157 where making math
a builtin was discussed.