[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: cookie
--[[text/plain]
Citation (with leading "> " of each line) from article:
<20020326.100634.68534541.shirai@rdmg.mgcs.mei.co.jp>
by Hideyuki SHIRAI (白井秀行) <shirai@rdmg.mgcs.mei.co.jp> :
> (1) 以前一回書きましたが、
>
> main.c:369:extern void imgsize_stopped(int pid);
> proto.h:227:extern void imgsize_stopped(pid_t pid);
>
> が矛盾しているため make のときにエラーになります。
うーむ、ChangeLogに書いた時は確かに消した筈なのに、何故か残っています
ね。重ねがさね、お恥ずかしい。
> (2) libmoe なしのときの terms.c(2974) は
> s/S_GRAPHICS/S_COMBINED/ でよいですか?
↓のように変更しなければならないのでした。
--
須藤 清一 <suto@ks-and-ks.ne.jp>
http://pub.ks-and-ks.ne.jp/pgp-public-key.html
--[[text/plain]
--- terms.c~ Sun Mar 24 02:07:10 2002
+++ terms.c Tue Mar 26 12:20:17 2002
@@ -2791,7 +2791,7 @@
if (CHMODE(pr[pcol]) == C_WCHAR2)
++pcol;
#else
- write1((pr[col] & S_GRAPHICS) ? graphchar(pc[col]) : pc[col]);
+ write1(CHMODE(pr[col]) == C_GRAPHICS ? graphchar(pc[col]) : pc[col]);
pcol = col + 1;
#endif
}