Added LINES and COLUMNS to data.msg for joe

This commit is contained in:
Michiel Broek 2006-02-14 20:44:40 +00:00
parent 3be6633d73
commit 318ff56d24
2 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,10 @@ $Id$
v0.83.13 13-Feb-2006 v0.83.13 13-Feb-2006
mbsebbs:
Writes LINES and COLUMNS environment into data.msg so that the
joe editor can use that.
v0.83.12 06-Feb-2006 - 13-Feb-2006 v0.83.12 06-Feb-2006 - 13-Feb-2006

View File

@ -2825,6 +2825,8 @@ int Ext_Edit()
fprintf(fd,"MSGSUBJECT='%s'\n",Msg.Subject); fprintf(fd,"MSGSUBJECT='%s'\n",Msg.Subject);
fprintf(fd,"BBSLANGUAGE='%c'\n",exitinfo.iLanguage); fprintf(fd,"BBSLANGUAGE='%c'\n",exitinfo.iLanguage);
fprintf(fd,"BBSFSEDKEYS='%d'\n",exitinfo.FSemacs); fprintf(fd,"BBSFSEDKEYS='%d'\n",exitinfo.FSemacs);
fprintf(fd,"LINES='%d'\n",rows);
fprintf(fd,"COLUMNS='80'\n");
fclose(fd); fclose(fd);
} }