Re: setting break points at multimethods in cdt

2011-04-26 Thread George Jahad
see if the elisp exists, like so: M-x describe-function sldb-line-bp see if the keymap exists like so: M-x describe-value cdt-map if they do, go to a java file higher up in the stack trace, and see if ^c^x^b works there. if not, try running this from the slime-repl: (swank.core.cdt-utils/init-em

Re: setting break points at multimethods in cdt

2011-04-26 Thread Sunil S Nandihalli
thanks George for your reply. for some reason C-c C-x C-b key stroke does not seem to be bound .. however, I don't mind typing the command at the repl. But, I don't seem to get the path right? .. should the path be absolute or should it be relative to the directory where the project.clj resides..?

Re: setting break points at multimethods in cdt

2011-04-26 Thread George Jahad
so cdt supports two kinds of breakpoints, method breakpoints, (with the set-bp function) and line breakpoints, (with the ^c^x^b,) keystroke in emacs. You are corrrect that the set-bp function doesn't work properly with multi-methods, but line breakpoints should be working. Are they? On Apr 26,

setting break points at multimethods in cdt

2011-04-26 Thread Sunil S Nandihalli
Hello everybody, I am unable to set break points at multimethods using set-bp ..( I am able to set break points for other functions.. though) .. can somebody tell me how to do this? I am using swank-cdt integration. It works very nicely otherwise. Thanks, Sunil. -- You received this message becau