Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix doc.
Browse files Browse the repository at this point in the history
juj committed Feb 11, 2021
1 parent a5c9400 commit 3d9ecef
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion emcc.py
Original file line number Diff line number Diff line change
@@ -633,7 +633,7 @@ def unmangle(x):

if type(symbols) is list:
return [unmangle(x) for x in symbols]
return unmangle(x)
return unmangle(symbols)


def parse_s_args(args):
4 changes: 2 additions & 2 deletions src/settings.js
Original file line number Diff line number Diff line change
@@ -739,11 +739,11 @@ var ASYNCIFY_STACK_SIZE = 4096;
// escaping, the following substitutions can be made:
// - ' ' -> '.',
// - '&' -> '#',
// - ',' -> '.'.
// - ',' -> '?'.
//
// That is, the function
// "foo(char const*, int&)" can be inputted as
// "foo(char.const*?.int%)" on the command line instead.
// "foo(char.const*?.int#)" on the command line instead.
//
// Note: Whitespace is part of the function signature! I.e.
// "foo(char const *, int &)" will not match "foo(char const*, int&)", and

0 comments on commit 3d9ecef

Please sign in to comment.