Skip to content

Commit dfb25d7

Browse files
committed
remove print
1 parent 0510257 commit dfb25d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lisp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1375,9 +1375,9 @@ static inline int tracep(lisp f) {
13751375
// 3. setq ??? (allow to define?)
13761376
inline lisp _setqqbind(lisp* envp, lisp name, lisp v, int create) {
13771377
lisp bind = getBind(envp, name, create);
1378-
printf("SETQBIND: found "); princ(name); putchar(' '); princ(bind); terpri();
1378+
// printf("SETQBIND: found "); princ(name); putchar(' '); princ(bind); terpri();
13791379
if (!bind) {
1380-
printf("SETQBIND: "); princ(name); putchar(' '); princ(bind); terpri();
1380+
//printf("SETQBIND: "); princ(name); putchar(' '); princ(bind); terpri();
13811381
bind = cons(name, nil);
13821382
*envp = cons(bind, *envp);
13831383
}

0 commit comments

Comments
 (0)