Skip to content

Commit

Permalink
Fix #1326: non-ascii character in print.js
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Nov 20, 2018
1 parent d09a7ff commit 6baf6f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# not yet released, version 5.3.0

- Implemented function `hasNumericValue`. Thanks @Sathish-kumar-Subramani.
- Fix #1326: non-ascii character in print.js.


# 2018-10-30, version 5.2.3
Expand Down
2 changes: 1 addition & 1 deletion src/function/string/print.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function factory (type, config, load, typed) {
const print = typed('print', {
// note: Matrix will be converted automatically to an Array
'string, Object | Array': _print,
'string, Object | Array, number | Object': _print
'string, Object | Array, number | Object': _print
})

print.toTex = undefined // use default template
Expand Down

0 comments on commit 6baf6f0

Please sign in to comment.