Hi all,
I get the following warning while compiling Gnus (everything works
fine nonetheless).
While loading fsf-compat, run-at-time was not fboundp. This
typically means your fsf-compat package is newer than xemacs-base.
You
should update your xemacs-base package.
I tracked it down to timer.el of the fsf-compat. This message is
definitely not true, since I am to the latest rev of the packages.
This small patch fixes it for me. I am not sure if it has any bad side
effects. Thoughts anyone ?
Thanks,
Nelson
cvs server: Diffing .
Index: timer.el
===================================================================
RCS file:
/pack/xemacscvs/XEmacs/packages/xemacs-packages/fsf-compat/timer.el,v
retrieving revision 1.4
diff -u -u -b -r1.4 timer.el
--- timer.el 2004/10/22 15:23:00 1.4
+++ timer.el 2005/11/08 05:42:58
@@ -28,10 +28,11 @@
;;; Code:
-(unless (fboundp #'run-at-time)
+(eval-when '(load eval)
+ (unless (fboundp #'run-at-time)
(warn "While loading fsf-compat, run-at-time was not fboundp. This
typically means your fsf-compat package is newer than xemacs-base.
You
-should update your xemacs-base package."))
+should update your xemacs-base package.")))
(require 'itimer)
--
Nelson Ferreira
Show replies by date