* changed the explicit concatenation operator from a period to %% for qse_awk_t

* added the concatenative assignment operator(%%=) for qse_awk_t
This commit is contained in:
2011-08-16 07:52:48 +00:00
parent 8da90da039
commit 4403c33aea
5 changed files with 25 additions and 14 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: run.c 549 2011-08-14 09:07:31Z hyunghwan.chung $
* $Id: run.c 551 2011-08-15 13:52:48Z hyunghwan.chung $
*
Copyright 2006-2011 Chung, Hyung-Hwan.
This file is part of QSE.
@ -3278,6 +3278,7 @@ static qse_awk_val_t* eval_assignment (qse_awk_rtx_t* run, qse_awk_nde_t* nde)
eval_binop_idiv,
eval_binop_mod,
eval_binop_exp,
eval_binop_concat,
eval_binop_rshift,
eval_binop_lshift,
eval_binop_band,