Hi, I am using org-mode in version 6.09a and ran into a problem with speedbar and cc-mode. And I don't want to drop one of these modes, because all three of them are great tools and essential for my daily work. The emacs version that I am using is for win32: GNU Emacs 22.3.1 (i386-mingw-nt5.0.2195) of 2008-09-06 on SOFT-MJASON I can't navigate from the speedbar frame to functions or methods in the source code file. In my case speedbar is based on imenu, not on the TAGS file. If I use imenu directly (M-x imenu and completion to find the functions there is no problem), but when started from speedbar, emacs eats up all the CPU resources and I need to interrupt it with C-g. If I enable debug-on-quit I get the attached backtraces for a plain c-file and for a java file. I send them as attachments for the sake of the linebreaks, because several lines are rather long. I am quite sure, that I am stuck in an infinite loop. Other modes that are not based on cc-mode like perl-mode or sql-mode don't show this behaviour. And I did my tests with several kind of c source files, even a minimalistic hello-world has this problem: -------------------- plain.c -------------------------- #include int main( int argc, char *argv[]) { printf("Hello, World!\n"); return 0; } my setup for org-mode is: (require 'org-install)) (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-ca" 'org-agenda) (global-set-key "\C-ct" 'org-todo-list) (setq org-agenda-files (list "~/org")) (setq org-archive-location "done/%s::* Finished Tasks") (require 'remember) (org-remember-insinuate) (setq org-directory "~/org") (setq org-default-notes-file (concat org-directory "/notes.org")) (global-set-key "\C-cr" 'org-remember) (global-set-key "\C-cc" 'remember-clipboard) Thanks, Rolf.