ravikumar10 / genyris

Automatically exported from code.google.com/p/genyris
Other
0 stars 0 forks source link

Assignment by = in macros not working #6

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
df -- (varname)
   template
       ,varname = (- ,varname 1)

What do you see?
     count - count 1 

What is the expected output?
     count = (- count 1) 

Original issue reported on code.google.com by birchb1...@gmail.com on 8 Dec 2010 at 9:14

GoogleCodeExporter commented 9 years ago
Assignmnet by '=' has been removed. So the above is now

df -- (varname)
   template
       setq ,varname (- ,varname 1)

, which works.

Original comment by birchb1...@gmail.com on 8 Feb 2011 at 7:22