I'm getting errors when trying to byte-compile slime.el. I *think* this is because of a spurious comma in slime-with-xref-buffer; patch below.
cvs server: Diffing . Index: slime.el =================================================================== RCS file: /project/slime/cvsroot/slime/slime.el,v retrieving revision 1.124 diff -u -r1.124 slime.el --- slime.el 2 Dec 2003 01:33:14 -0000 1.124 +++ slime.el 2 Dec 2003 10:04:40 -0000 @@ -3009,7 +3009,7 @@ (slime-init-xref-buffer ,package ,type ,sym) (make-local-variable 'slime-xref-saved-window-configuration) (setq slime-xref-saved-window-configuration - ,(current-window-configuration))) + (current-window-configuration))) (progn ,@body) (setq buffer-read-only t) (select-window (or (get-buffer-window (current-buffer) t)
Raymond Wiker Raymond.Wiker@fast.no writes:
I'm getting errors when trying to byte-compile slime.el. I
*think* this is because of a spurious comma in slime-with-xref-buffer; patch below.
Your are right. Fixed in CVS. I guess I should compile a bit more often.
Helmut.