CVSROOT:        /cvs
Module name:    src
Changes by:     [email protected] 2020/07/01 07:26:54

Modified files:
        usr.bin/awk    : run.c 

Log message:
Fix concatenation regression introduced in version 20201024.
Concatenation evaluated both sides of the expression before doing
its work, which, since assign() evaluates to the cell being assigned
to, meant that expressions like "print (a = 1) (a = 2)" would print
"22" rather than "12".  From Tim van der Molen

Reply via email to