私は同じ問題を解決するのに苦労し、答えを見つけました。
まず、lispbox.bat ファイルを開きました。
@echo off
rem Thanks to Venkat who provided this bit of COMMAND wizardry.
if NOT %OS%==Windows_NT goto checkhome
for %%i in ( "%CD%" ) do set LISPBOX_HOME=%%~si%
goto start
:checkhome
rem
rem if the environment variable is not defined, dereferencing
rem it produces the same string!
rem
if %LISPBOX_HOME%==%LISPBOX_HOME% goto noenv
:start
set EMACS=%LISPBOX_HOME%/emacs-23.2/bin/runemacs.exe
set TO_EVAL="(progn (load \"lispbox\") (slime))"
%EMACS% --no-init-file --no-site-file --eval=%TO_EVAL%
goto end
:noenv
echo LISPBOX_HOME environment variable should be set and
echo point to the installation directory of LISPBOX before
echo launching this command.
:end
次に、その中のいくつかの行を変更しました。
から
set EMACS=%LISPBOX_HOME%/emacs-23.2/bin/runemacs.exe
set TO_EVAL="(progn (load \"lispbox\") (slime))"
%EMACS% --no-init-file --no-site-file --eval=%TO_EVAL%
TO (「--no-init-file」を削除するだけ)
set EMACS=%LISPBOX_HOME%/emacs-23.2/bin/runemacs.exe
set TO_EVAL="(progn (load \"lispbox\") (slime))"
%EMACS% --no-site-file --eval=%TO_EVAL%