Re: [O] flet / my-filt problem

2012-08-01 Thread Andreas Leha
Bastien writes: > Eric Schulte writes: > >> Regardless, I've just pushed up a fix which >> replaces the named function with an anonymous lambda-expression. I've >> also pushed up a test case which exercises this function. Everything >> now seems to be working. > > Thanks! Sorry for the late r

Re: [O] flet / my-filt problem

2012-07-31 Thread Bastien
Eric Schulte writes: > Regardless, I've just pushed up a fix which > replaces the named function with an anonymous lambda-expression. I've > also pushed up a test case which exercises this function. Everything > now seems to be working. Thanks! -- Bastien

Re: [O] flet / my-filt problem

2012-07-31 Thread Eric Schulte
Bastien writes: > Hi Eric, > > Eric Schulte writes: > >> Does the attached patch resolve this bad behavior? > > Can't we just get rid of org-flet in this case? > > With simply let-defining the temporary function? > > (let ((f (lambda(x) (message x > (funcall f "Hello!")) This is exactly t

Re: [O] flet / my-filt problem

2012-07-31 Thread Bastien
Hi Eric, Eric Schulte writes: > Does the attached patch resolve this bad behavior? Can't we just get rid of org-flet in this case? With simply let-defining the temporary function? (let ((f (lambda(x) (message x (funcall f "Hello!")) -- Bastien

Re: [O] flet / my-filt problem

2012-07-31 Thread Andreas Leha
Eric Schulte writes: > Andreas Leha writes: > >> Eric Schulte writes: >> >>> Andreas Leha writes: >>> Hi all, with the current HEAD (commit 0202adb1c02908a75a7845438381e40d811fd99a) from master I get an error during the export of one of my files complaining about an un

Re: [O] flet / my-filt problem

2012-07-30 Thread Eric Schulte
Andreas Leha writes: > Eric Schulte writes: > >> Andreas Leha writes: >> >>> Hi all, >>> >>> with the current HEAD (commit 0202adb1c02908a75a7845438381e40d811fd99a) >>> from master I get an error during the export of >>> one of my files complaining about an undefined my-filt function. >>> >>> R

Re: [O] flet / my-filt problem

2012-07-30 Thread Andreas Leha
Eric Schulte writes: > Andreas Leha writes: > >> Hi all, >> >> with the current HEAD (commit 0202adb1c02908a75a7845438381e40d811fd99a) >> from master I get an error during the export of >> one of my files complaining about an undefined my-filt function. >> >> Replacing org-flet with flet in ob-c

Re: [O] flet / my-filt problem

2012-07-30 Thread Eric Schulte
Andreas Leha writes: > Hi all, > > with the current HEAD (commit 0202adb1c02908a75a7845438381e40d811fd99a) > from master I get an error during the export of > one of my files complaining about an undefined my-filt function. > > Replacing org-flet with flet in ob-comint.el (line 78) introduces a >

[O] flet / my-filt problem

2012-07-30 Thread Andreas Leha
Hi all, with the current HEAD (commit 0202adb1c02908a75a7845438381e40d811fd99a) from master I get an error during the export of one of my files complaining about an undefined my-filt function. Replacing org-flet with flet in ob-comint.el (line 78) introduces a compiler warning, but solves the pro