slight add
This commit is contained in:
3
main.c
3
main.c
@@ -94,6 +94,9 @@ int main(int argc, char *argv[]) {
|
|||||||
// Because lists are pointers, we need copies so we can access the list later.
|
// Because lists are pointers, we need copies so we can access the list later.
|
||||||
List cpy = tokenList, og = tokenList;
|
List cpy = tokenList, og = tokenList;
|
||||||
if (parseInputLine(&tokenList) && tokenList == NULL ) {
|
if (parseInputLine(&tokenList) && tokenList == NULL ) {
|
||||||
|
#if EXT_PROMPT
|
||||||
|
if (debug) printList(cpy);
|
||||||
|
#endif
|
||||||
// Consume the entire tokenList (through cpy).
|
// Consume the entire tokenList (through cpy).
|
||||||
while (cpy != NULL) {
|
while (cpy != NULL) {
|
||||||
switch (cpy->type) {
|
switch (cpy->type) {
|
||||||
|
|||||||
Reference in New Issue
Block a user