Arc Forumnew | comments | leaders | submitlogin
Arc3.1; Scheme4.2.1 on Ubuntu Jaunty 9.04 problem
2 points by thaddeus 5763 days ago | 3 comments
fn 'md-from-form' doens't work; tracked it down to 'esc-tags' function not working:

  arc> (md-from-form nil t)
  Error: "reference to undefined identifier: _esc<>"

  arc> (esc-tags nil)
  Error: "reference to undefined identifier: _esc-tags"
  
not sure why - I know I have loaded the file...

Any ideas ? for those of you using news.arc this will break the 'process-story' function on 'submit-page'.

Didn't have a problem with the old scheme and version 3.whatever of arc before this....

Thanks, T.



2 points by zck 5763 days ago | link

For what it's worth, it's working for me on Ubuntu Jaunty 9.04:

    arc> (md-from-form nil t)
    ""
    arc> (esc-tags nil)
    ""

-----

2 points by pg 5763 days ago | link

It looks like you may somehow be using old versions of some files, if esc-tags isn't defined.

-----

1 point by thaddeus 5763 days ago | link

yep - It was just me. ugh.

Silly me - I decided to add version nums to my arc directories...and missed one parameter.... - thanks for both replies. T.

-----