>I use joe in its jstar personality as my primary text editor.  If I set the
>left margin to (for instance) 5 by using ^ol, 5, I can never set it back to
>1.  Any value other than 1 is accepted, but jstar will not accept "1" as a
>valid input to ^ol.

Found the bug in rc.c.  Change this:

   v = calc(bw, s) - 1.0;
   ...
   *(int *)(blah blah blah) = v;

To this:
   v = calc(bw, s);
   ...
   *(int *)(blah blah blah) = v - 1;

Joe


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to