Open GoogleCodeExporter opened 9 years ago
After some hours of debugging jdibug _and_ eieio (from CEDET) have the
following information: (maybe it will help someone who knows more about elisp
than me)
* getfoo is mentioned in eieio.el file,
* the error message is displayed when trying to execute this method (from jdibug-ui.el):
>>>> CUT <<<<
...
(defmethod set-breakpoint ((bp jdibug-breakpoint) &optional vm-list class)
"Set the breakpoint BP. If VM-LIST, only set it in those
virtual machines. If CLASS, use that class instead of the one
based on the file name."
(jdibug-debug "set-breakpoint %s %s" (object-class-name bp) vm-list)
(setf (jdibug-breakpoint-status bp) 'unresolved)
(unless (memq bp (breakpoint-list bp))
-> (push bp (breakpoint-list bp)))
...
>>>> CUT <<<<
when running the debugger, evaluating (breakpoint-list bp) returns 'nil'.
Any ideas are appreciated!
Original comment by coquelic...@gmail.com
on 14 Feb 2013 at 11:40
Original issue reported on code.google.com by
coquelic...@gmail.com
on 13 Feb 2013 at 3:41