svn commit: r326784 - head/stand/common
Warner Losh
imp at FreeBSD.org
Mon Dec 11 23:15:45 UTC 2017
Author: imp
Date: Mon Dec 11 23:15:43 2017
New Revision: 326784
URL: https://svnweb.freebsd.org/changeset/base/326784
Log:
Revert part of 362772. It was causing problems for includes and making
the menus disappear.
Sponsored by: Netflix
Modified:
head/stand/common/interp_forth.c
Modified: head/stand/common/interp_forth.c
==============================================================================
--- head/stand/common/interp_forth.c Mon Dec 11 22:55:51 2017 (r326783)
+++ head/stand/common/interp_forth.c Mon Dec 11 23:15:43 2017 (r326784)
@@ -354,7 +354,7 @@ interp_forth_incl(void *ctx, const char *filename)
"can't open %s\n", filename);
return (CMD_ERROR);
}
- return (ficlExecFD(softc->bf_vm, fd) == 0 ? CMD_OK : CMD_ERROR);
+ return (ficlExecFD(softc->bf_vm, fd));
}
More information about the svn-src-all
mailing list