EDITED 2 : This question is answered, not yet completed, but the solution presented by @vpit3833 work the way I need it. So, call emacs this way emacs -nw --no-site-file. This suppress the error message, and the .emacs still called. However, I still can not found the reason of the error anyway. Any suggestion? But not a bounty this time. Thanks!
EDITED 1 : I set a bounty to this question for anyone who can solved this problem. Because it's quite annoying when I startup Emacs, and I must load-file .emacs manually. Thanks
Hello all,
I use Emacs Native Windows application. It runs well. But now it will not read my .emacs, and always show error message :
if: Wrong number of arguments: #[(type level message &rest args) "ÄÅÆ
##" [type message args level display-warning apply format] 6 ("c:/Development/Tools/emacs-23.2/lisp/emacs-lisp/warnings.elc" . 8481)], 2
Everything seems runs ok. But after I install Emacs W32, and Ergo Emacs, and uninstall both of them, now the Emacs Native Windows Applications display that error.
What's been wrong?
Thanks you


emacs --debug-initandemacs --debug-init -q? The stacktraces should point to the place that is offending. – vpit3833 Feb 24 '11 at 7:48if: Wrong number of arguments: #[(type level message &rest args) "ÄÅÆ ##" [type message args level display-warning apply format] 6 ("c:/Development/Tools/emacs-23.2/lisp/emacs-lisp/warnings.elc" . 8481)], 2It's the same as previous :) – swdev Feb 25 '11 at 1:56emacs --debug-init, it most likely means there is anifstatement in your~/.emacsor~/.emacs.d/init.elthat is not properly formed. Do you get a different error message foremacs --debug-init -q? – vpit3833 Feb 25 '11 at 3:00if. If adding(setq inhibit-default-init t)in your ~/.emacs stops the error message, it is default.el you need to find and fix the offending code. Or, if in the unlikely event that it (the offendingif) is in site-start.el, fix that file (if startingemacs --no-site-filestops the error, that is). In both the cases, I don't know the path to those files on Windows systems. – vpit3833 Feb 25 '11 at 9:44