Hi Eric,
When compiling the latest CVS version of Semantic with development
version of Emacs 21, I got the following error on most of Elisp files:
error: error (("Recursive `require' for feature `semantic-util'")).
The problem is in semantic-util.el where (provide 'semantic-util)
moved after (require 'semantic-util-modes). Because
semantic-util-modes requires semantic-util there was a recursive load!
The following small patch solves that.
Sincerely,
David
*** semantic-util.el.ori Tue May 7 20:44:35 2002
--- semantic-util.el Wed May 8 12:18:54 2002
***************
*** 2511,2519 ****
(message "Remaining overlays: %S" o)))
over)
;;; Minor modes
;;
(require 'semantic-util-modes)
- (provide 'semantic-util)
;;; semantic-util.el ends here
--- 2511,2520 ----
(message "Remaining overlays: %S" o)))
over)
+ (provide 'semantic-util)
+
;;; Minor modes
;;
(require 'semantic-util-modes)
;;; semantic-util.el ends here
|