"Steven E. Harris" seh@panix.com writes:
Line 4603 in slime.el contains the following form:
,---- | ((:zip file entry) | (require 'arc-mode) | (set-buffer (find-file-noselect file t)) | (goto-char (point-min)) | (re-search-forward (concat " " entry "$")) | (let ((buffer (save-window-excursion | (archive-extract) | (current-buffer)))) | (set-buffer buffer) | (goto-char (point-min)))) `----
Note that it requires arc-mode. I don't have arc-mode, so slime.el won't load in XEmacs.
Are you sure that the `(require 'arc-mode)' is executed at load time?
-T.