1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-27 09:09:10 +00:00

Remove mention of TRASE. (#197)

This macro no longer exists and one message had it as a typo.
This commit is contained in:
Bruce Mitchener
2021-01-10 01:17:03 +07:00
committed by GitHub
parent 16c6b8f7c3
commit b45e249a08
2 changed files with 1 additions and 2 deletions

View File

@@ -54,7 +54,6 @@ DEBUG Used when debugging, to enclose trace and dump code.
dbprint.h for the definition.
TRACE
TRACE2
TRASE
OPTRACE If true, the dispatch loop prints the PC & opcode each time thru
FNTRACE If true, you see the name of each function called.
STACKCHECK If true, you see unusual cases of stack manipulation

View File

@@ -185,7 +185,7 @@ void tty_setbaudrate() {
int tty_baudtosymbol(short aBaud)
{
#ifdef TRACE
printf("TRASE: tty_baudtosymbol(%x)\n", aBaud);
printf("TRACE: tty_baudtosymbol(%x)\n", aBaud);
#endif
if (aBaud == 0) return (B50);