Patch for skkfep-0.87 --------------------- * showcurmode(): Skip showmessage() if curmodestr is not yet initialized. This prevents skkfep to get SIGSEGV at startup. Author: NAKAHASHI Ichiro diff -ur skkfep-0.87.orig/etc.c skkfep-0.87/etc.c --- skkfep-0.87.orig/etc.c 2003-09-03 08:49:31.000000000 +0900 +++ skkfep-0.87/etc.c 2004-11-21 06:53:56.226600520 +0900 @@ -61,7 +61,7 @@ showcurmode() { - showmessage(curmodestr); + if (curmodestr) showmessage(curmodestr); } showlastmode()