From: Jim Weirich Date: 2007-10-04T10:25:12+09:00 Subject: Update: rdebug / emacs / gud Alex Shulgin wrote: > May be you are missing the very ruby-elisp files or you have some > version conflict (*.el files vs. ruby or *.el files vs Emacs). :-) Found the problem: The regexp used to filter the output of rdebug to determine the source code line was not correct. Original Version: "\\([^:\n]*\\):\\([0-9]+\\):.*\n" Fixed Version: "^Z^Z\\([^:\n]*\\):\\([0-9]+\\).*\n" (yes, the first two character of the regexp are control-Z) That fixed it for me. I added the control z's and removing the second colon and now everything is working fine. This leads me to suspect that the ruby-debug gem and the rdebug.el emacs file are out of sync. My ruby-debug gem is version 0.9.3. There are no version markings in the rdebug.el file. -- Jim Weirich -- Posted via http://www.ruby-forum.com/.