File mode specification error: (error "Recursive `require' for feature `sb-info'")I searched around the net and found out a patch here
According to the post, edit the file
/usr/share/emacs/site-lisp/speedbar/sb-info.eland put the line
(provide 'sb-info)before
(eval-after-load "info" '(require 'sb-info))instead of after.
After this:
M-x byte-compile-file /path/to/sb-info.elThis will generate the sb-info.elc, and since I'm using emacs-snapshot,
I moved this file to
/usr/share/emacs-snapshot/site-lisp/speedbar/Voila! Problem Solved.
Also, I read somewhere else, that this has been fixed upstream in the cedet CVS.
That might take sometime to trickle down debian sid, I guess.