From c01e6f9d9be67e4aedb33857a00f8d20697a19ef Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Sat, 21 Sep 2013 15:07:44 -0700 Subject: [PATCH] Make :plus-integer actually print + or - as documented. The comment says the field should be proceeded with a + or -, but depended on negative integers producing the needed -. When disassembling with a radix, this doesn't produce the expected output (#x7 vs #x-7 vs -#x7). So really print + or - followed by the absolute value. --- src/compiler/disassem.lisp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/compiler/disassem.lisp b/src/compiler/disassem.lisp index 1316aa2a6..762b77b22 100644 --- a/src/compiler/disassem.lisp +++ b/src/compiler/disassem.lisp @@ -952,13 +952,14 @@ ((eq (car source) :plus-integer) ;; prints the given field proceed with a + or a - (let ((form - (arg-value-form (arg-or-lose (cadr source) funstate) - funstate - :numeric))) + (arg-value-form (arg-or-lose (cadr source) funstate) + funstate + :numeric))) `(progn - (when (>= ,form 0) - (local-write-char #\+)) - (local-princ ,form)))) + (if (>= ,form 0) + (local-write-char #\+) + (local-write-char #\-)) + (local-princ (abs ,form))))) ((eq (car source) 'quote) `(local-princ ,source)) ((eq (car source) 'function) -- GitLab