Luke Gorrie wrote:
Surendra Singhi efuzzyone@netscape.net writes:
Hi, This time I am using slime standard 1-0 release on Xemacs(with clisp) and it seems the command for loading a file doesn't work, specifically the short-cut key and the associated command. It doesn't do anything rather shows the *inferior-lisp* buffer for no reason. The explicit lisp load file command works without any problem.
Can you check the binding with `C-h k C-c C-l'? Possibly ILISP is being loaded and is overriding our keybinding. If ILISP is loaded then it will fiddle itself into the lisp-mode keymap with a lot of commands that pop up *inferior-lisp*.
The solution in that case is to not load ILISP, but I'm not up on how XEmacs loads packages so I don't know the exact steps.
This is the info which I got when I checked the binding. Do you want some other info?
C-c C-l runs `slime-load-file'
`slime-load-file' is an interactive Lisp function -- loaded from "slime" (slime-load-file FILENAME)
Documentation: Load the Lisp file FILENAME.
Thanks.