From: Robert D. <rob...@gm...> - 2025-08-16 03:59:25
|
On Fri, Aug 15, 2025 at 10:45 AM Stavros Macrakis <mac...@gm...> wrote: > "="(a,b+1) => a = b + 1 << correct rendering with regular "=" > ' "="(a,b+1) => a = (b + 1) << BAD, parens are not necessary Try it again after :lisp (setf (get '%mequal 'rbp) (get 'mequal 'rbp)) :lisp (setf (get '%mequal 'lbp) (get 'mequal 'lbp)) which gives '"=" (nounified) the same binding powers as "=" (verbified). best Robert |