Skip to content

Commit

Permalink
Fixed a missing entry for "std()" in the list of known functions
Browse files Browse the repository at this point in the history
  • Loading branch information
numeredev committed Feb 2, 2024
1 parent 02539e8 commit 3f9fbd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion changes.tmp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Added The GUI element state "readonly" was added, which is identical to "disable
Added The plot option margin=MARGIN can be used to control the plot margin size.
Added The table method "TAB().convert()" may now autodetect the column type if the second argument is set to "auto" or omitted.
Added The table method "TAB().fndcols()" may now support regular expressions.
Added The table viewer will now group common table header rows together, creating a virtual hierarchy.
Added The table viewer will now group common table header rows together, creating a virtual hierarchy and grid lines can be hidden.
Added The terminal now also proposes global variables for auto completion.
Added Using "statustext", one can now modify the statusbar of window layouts.
Added Whole new apps can now be created using the new file dialog and selecting one of the available app templates.
Expand Down
1 change: 1 addition & 0 deletions kernel/core/strings/stringfunchandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ static std::map<std::string,MAF> getParserMafMap()
mafMap["sum("] = parser_Sum;
mafMap["avg("] = parser_Avg;
mafMap["prd("] = parser_product;
mafMap["std("] = parser_Std;
mafMap["norm("] = parser_Norm;
mafMap["med("] = parser_Med;
mafMap["pct("] = parser_Pct;
Expand Down

0 comments on commit 3f9fbd6

Please sign in to comment.