Skip to content

Commit

Permalink
Merge pull request #404 from Affonso-Gui/print-msg-on-default-errhandler
Browse files Browse the repository at this point in the history
Print E_USER message on default error handler
  • Loading branch information
k-okada authored Feb 14, 2020
2 parents 957967d + 9c9df5c commit ae5e32a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisp/c/eus.c
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ va_dcl
prinx(ctx,msg,ERROUT); flushstream(ERROUT); break;
}
if( ec == E_USER ) {
fprintf( stderr,"%p",msg ); flushstream(ERROUT); }
fprintf( stderr,"%s",(char*)msg ); flushstream(ERROUT); }
else if (ispointer(msg)) {prinx(ctx,msg,ERROUT); flushstream(ERROUT); }
if (ctx->callfp) {
fprintf(stderr," in ");
Expand Down

1 comment on commit ae5e32a

@k-okada
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for contributing EusLisp documentation

Please check latest documents before merging

PDF version of English manual: manual.pdf
PDF version of Japanese jmanual: jmanual.pdf
HTML version of English manual: manual.html
HTML version of Japanese manual: jmanual.html
Sphinx (ReST) version of English manual: manual.rst

Please sign in to comment.