Author Topic: Bug fix much appreciated!  (Read 10199 times)

Offline Rob Neff

  • Forum Moderator
  • Full Member
  • *****
  • Posts: 429
  • Country: us
Bug fix much appreciated!
« on: August 03, 2010, 10:27:42 PM »
I can't get to repo.or.cz git right now so...

whoever fixed the following bug in 2.09rc5 THANK YOU!

Code: [Select]
%macro test 2
   %xdefine %%tname %{$name}.%1
   %assign %%tsize %$size

   %push %2

   ; fails on 2.08.02 - macro local vars lost on context push

   %define %$name %%tname
   %assign %$size %%tsize
   %fatal name %{$name} size %{$size}
%endmacro

%push myctx
%xdefine %$name MSG
%assign %$size 42
test POINT, NEWCTX