Thank you comments! At Thu, 17 Sep 2009 23:10:52 +0900, Kenshi Muto wrote: > > I attached a patch which changes migemo-coding-system depending on a $LANG > > environment variable. > > I think that the patch works well when LANG=ja_JP.UTF-8 and ja_JP.EUC-JP. > > Well, although I applied your patch, I got an error: > "Symbol's function definition is void: search". > > search function seems not exist on emacs23 or emacs22. > I'm sorry but could you tell me how to fix it?
I'm sorry. The search function is not defined by default. It is contained in Common Lisp extensions. So (require 'cl) is required. Because I'm not familiar with Emacs Lisp, I used the Common Lisp function. The search function tests whether a string includes another string. (like strstr in the C language) If you know strstr-like emacs function, please use it instead of search. bye -- tadokoro -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

