1. Need help fixing eudoc creole
- Posted by jcmarsh Sep 01, 2008
- 800 views
In eudoc/common.e, How can you get the func_name to return the real function name and not just the placeholder text "Unknown"?
common.e line 53 of 89
with trace ... if atom(func_search) then with trace(1) -- statement 1: func_name = "Unknown" else with trace(1) -- statement 2: func_name = func_name[func_search[2][1]..func_search[2][2]] end if
I ran it with trace using this:
exwc eudoc.ex -a ..\..\docs\eu40.af -o euphoria.txtand the second assignment statement is never called. Could you track down why this is, I would greatly appreciated it.
2. Re: Need help fixing eudoc creole
- Posted by jcmarsh Sep 01, 2008
- 814 views
I think it may be a problem in the input files themselves.
Example:
include/std/io.e line 269 of 1061
--** -- Signature: -- global function gets(integer fn)
This is processed, I think around line 46 of eudoc/common.e
... if eu:match("Signature:", line) then ...
I don't know where to go from there though.
3. Re: Need help fixing eudoc creole
- Posted by jcmarsh Sep 01, 2008
- 762 views
I found the problem. I needed to use the lastest Linux version to make the docs. It works fine now.