diff options
author | Daniel Cerqueira <dan.git@lispclub.com> | 2025-06-01 19:15:05 +0100 |
---|---|---|
committer | Daniel Cerqueira <dan.git@lispclub.com> | 2025-06-01 19:15:05 +0100 |
commit | 630bc6c0eafab95302f044a642447f9d02800474 (patch) | |
tree | 000f1e9a34292353a6accd9c68acc8751aa2af88 /liblali.c | |
parent | d490f286483d40adbfeaa4f03eff8ab625b5710c (diff) |
Diffstat (limited to 'liblali.c')
-rw-r--r-- | liblali.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1502,7 +1502,7 @@ static char *stdlib = LISP( (defun consp (x) (and (listp x) (ap x))) (defun differ (x y) - (fill ((or (consp x) (consp y)) (dif x y)) + (fill ((and (consp x) (consp y)) (dif x y)) (f (or (differ (car x) (car y)) (differ (cdr x) (cdr y)))))) |