From 053fb8266ff95ecbebc1ebb5f3d7de419fa404d9 Mon Sep 17 00:00:00 2001 From: Kris Katterjohn Date: Mon, 21 Dec 2020 17:18:39 -0500 Subject: [PATCH] Remove an outdated (incorrect) comment The false vs NIL behavior this comment referred to was changed in commit e43c7041 in 2005. --- src/nparse.lisp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/nparse.lisp b/src/nparse.lisp index a165550a1..a077b25dc 100644 --- a/src/nparse.lisp +++ b/src/nparse.lisp @@ -1454,8 +1454,7 @@ entire input string to be printed out when an MAXIMA-ERROR occurs." (case (first-c) (($else) (list t (parse '$any (rbp (pop-c))))) (($elseif) (parse-condition (pop-c))) - (t ; Note: $false instead of () makes DISPLA suppress display! - (list t '$false))))) + (t (list t '$false))))) (def-mheader $do (mdo)) -- 2.11.4.GIT