Re: text.e bugs?
- Posted by irv Jan 10, 2015
- 2430 views
Had to add one more patch to eliminate the -,267.45 shown in line 8b
Around line 1956 of text.e:
dpos -= dist if dpos > 1 then argtext = argtext[1.. dpos - 1] & tsep & argtext[dpos .. $] end if end while if bracketed then argtext = '(' & argtext & ')' end if end if end if -- patch by irv ---------------------------- if match("-,",argtext) = 1 then argtext = '-'&argtext[3..$] end if -------------------------------------------- if width <= 0 then width = length(argtext) end if if width < length(argtext) then if align = '>' then argtext = argtext[ $ - width + 1 .. $] elsif align = 'c' then pos = length(argtext) - width