If you are using a relatively new emacs with the revamped compile.el and find that the jde-run-etrace commands to jump to the souce line for a stack trace do not work, the following may help"
(defun jde-run-etrace-goto (&optional next) "Display the current stack using `compilation-goto-locus'." (jde-run-etrace-current-marker next) (compilation-goto-locus (car jde-run-etrace-current-marker) (cdr jde-run-etrace-current-marker) nil)) The signature of compilation-goto-locus seems to have changed from taking a single argument of a pair of markers to taking two (or three) marker arguments. Suraj
