[parenscript-devel] BUG: &body in ParenScript macrolet doesn't work.
            
            
            
                16 Jun
                
                    2007
                
            
            
                16 Jun
                
                '07
                
            
            
            
        
    
                3:02 a.m.
            
        This works: (js (macrolet ((foo (bar &rest body) `(+ ,@body))) (foo 1 2 3 4))) This doesn't: (js (macrolet ((foo (bar &body body) `(+ ,@body))) (foo 1 2 3 4))) Related to this, make ParenScript macrolet support all lambda list keywords that Lisp macrolet supports.
            
            
            
                26 Jun
                
            
            
                26 Jun
                
            
            
            
        
        
                7:35 p.m.
            
        
          New subject: [parenscript-devel] Re: BUG: &body in ParenScript macrolet doesn't	work.
        
        
    Fixed. See today's patch from me in darcs. On 6/15/07, Vladimir Sedach <vsedach@gmail.com> wrote:
This works:
(js (macrolet ((foo (bar &rest body) `(+ ,@body))) (foo 1 2 3 4)))
This doesn't:
(js (macrolet ((foo (bar &body body) `(+ ,@body))) (foo 1 2 3 4)))
Related to this, make ParenScript macrolet support all lambda list keywords that Lisp macrolet supports.
        6706
        
      
          Age (days ago)
        
      
        6716
        
    
          Last active (days ago)
        
        
        
        1 comments
    
    
        
        1 participants
    
    
    
    
    
    
    
    
    participants (1)
- 
                
Vladimir Sedach