On Thu, 4 Apr 2002, Frank Heckenbach wrote:
Russell Whitaker wrote:
Attached is a tar.gz source listing of an editor written in pascal.
One comment: It seems to have a window size of 80x25 hard-coded. This may be to large or too small, both on the console (SVGATextMode) and, of course, in xterms.
[..]
Larger is easy. Smaller has some little problems (no pun intended). What would be reasonable values for minimum window size?
Meanwhile, if you want to try larger, in file pe.pas, lines 34, 42 ,44, 283, 886 change 80 to GetXMax in file pemenu.pas line 73 change makewin( EditWin, 1, 2, 80, 25 ); to makewin( EditWin, 1, 2, ScreenSize.X, ScreenSize.Y );
Would you like to place it in the contrib directory of the new GPC web site? If you like, I can just copy it there, or set up a directory with write access for you (especially if you have, or plan to have, more files to put there).
Either way would work just fine for me
Thanks, Russ