mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
First steps in supporting color fonts.
Some minor fixes to build with emscripten.
This commit is contained in:
@@ -149,10 +149,8 @@ void FormatterModule::runFormatter( UICodeEditor* editor, const Formatter& forma
|
||||
strings.push_back( cmdArr[i].c_str() );
|
||||
strings.push_back( NULL );
|
||||
struct subprocess_s subprocess;
|
||||
int result = subprocess_create( strings.data(),
|
||||
subprocess_option_inherit_environment |
|
||||
subprocess_option_combined_stdout_stderr,
|
||||
&subprocess );
|
||||
int result =
|
||||
subprocess_create( strings.data(), subprocess_option_inherit_environment, &subprocess );
|
||||
if ( 0 == result ) {
|
||||
std::string buffer( 1024, '\0' );
|
||||
std::string data;
|
||||
|
||||
Reference in New Issue
Block a user