unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* Breakpoint etc. support merged into CVS
@ 2002-10-26 19:07 Neil Jerram
  2002-10-27 13:41 ` Neil Jerram
  0 siblings, 1 reply; 6+ messages in thread
From: Neil Jerram @ 2002-10-26 19:07 UTC (permalink / raw)


I've just merged a lot of enhancements into Guile's debugger in
unstable CVS.  Please let me (and the list) know if you notice any
problems, especially if regressions of pre-existing behaviour.

Corresponding documentation will be merged into unstable CVS shortly
(i.e. today/tomorrow).

        Neil



_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Breakpoint etc. support merged into CVS
  2002-10-26 19:07 Breakpoint etc. support merged into CVS Neil Jerram
@ 2002-10-27 13:41 ` Neil Jerram
  2002-11-03 18:10   ` Marius Vollmer
  0 siblings, 1 reply; 6+ messages in thread
From: Neil Jerram @ 2002-10-27 13:41 UTC (permalink / raw)
  Cc: Guile Users

>>>>> "Neil" == Neil Jerram <neil@ossau.uklinux.net> writes:

    Neil> I've just merged a lot of enhancements into Guile's debugger in
    Neil> unstable CVS.  Please let me (and the list) know if you notice any
    Neil> problems, especially if regressions of pre-existing behaviour.

    Neil> Corresponding documentation will be merged into unstable CVS shortly
    Neil> (i.e. today/tomorrow).

OK, the docs are there now too.  (I still need to flesh out
descriptions of some debugger commands, but apart from that it's
done.)

        Neil



_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Breakpoint etc. support merged into CVS
  2002-10-27 13:41 ` Neil Jerram
@ 2002-11-03 18:10   ` Marius Vollmer
  2002-11-04 18:44     ` Neil Jerram
  0 siblings, 1 reply; 6+ messages in thread
From: Marius Vollmer @ 2002-11-03 18:10 UTC (permalink / raw)
  Cc: Guile Development, Guile Users

Neil Jerram <neil@ossau.uklinux.net> writes:

> OK, the docs are there now too.

Excellent!

However, cough, I get this:

guile> (use-modules (ice-9 debugger breakpoints source))
guile> (define (f x) (let ((y 2)) ##(+ x y)))           
ERROR: No applicable method for #<<generic> get-breakpoint (2)> in call (get-breakpoint #f 2 29)
ABORT: (goops-error)
ERROR: In procedure scm_lreadr:
ERROR: #<unknown port>:3:38: unexpected ")"
ABORT: (read-error)
ERROR: In procedure scm_lreadr:
ERROR: #<unknown port>:3:39: unexpected ")"
ABORT: (read-error)

Also, I think having to use some many modules is a bit inconvenient.
What about making the normal repl be prepared for the usual kinds of
breakpoints?

-- 
GPG: D5D4E405 - 2F9B BCCC 8527 692A 04E3  331E FAF8 226A D5D4 E405


_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Breakpoint etc. support merged into CVS
  2002-11-03 18:10   ` Marius Vollmer
@ 2002-11-04 18:44     ` Neil Jerram
  2002-11-05 23:10       ` Neil Jerram
  2002-11-17 14:58       ` Marius Vollmer
  0 siblings, 2 replies; 6+ messages in thread
From: Neil Jerram @ 2002-11-04 18:44 UTC (permalink / raw)
  Cc: Guile Development, Guile Users

>>>>> "Marius" == Marius Vollmer <mvo@zagadka.ping.de> writes:

    Marius> However, cough, I get this:

    guile> (use-modules (ice-9 debugger breakpoints source))
    guile> (define (f x) (let ((y 2)) ##(+ x y)))           
    Marius> ERROR: No applicable method for #<<generic> get-breakpoint (2)> in call (get-breakpoint #f 2 29)
    Marius> ABORT: (goops-error)
    Marius> ERROR: In procedure scm_lreadr:
    Marius> ERROR: #<unknown port>:3:38: unexpected ")"
    Marius> ABORT: (read-error)
    Marius> ERROR: In procedure scm_lreadr:
    Marius> ERROR: #<unknown port>:3:39: unexpected ")"
    Marius> ABORT: (read-error)

Hmm, that's odd.  When I try this, I get:

[neil@laruns ~]$ guile -q
guile> (use-modules (ice-9 debugger breakpoints source))
guile> (define (f x) (let ((y 2)) ##(+ x y)))
Set breakpoint 1: standard input:2:30: (+ x y)
guile> (version)
"1.7.0"
guile>

I'll keep looking; maybe I have something installed that CVS doesn't
install properly.

    Marius> Also, I think having to use some many modules is a bit inconvenient.
    Marius> What about making the normal repl be prepared for the usual kinds of
    Marius> breakpoints?

Sounds good; should this use autoload as per the current treatment of
(ice-9 debugger) and (ice-9 debug)?

        Neil



_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Breakpoint etc. support merged into CVS
  2002-11-04 18:44     ` Neil Jerram
@ 2002-11-05 23:10       ` Neil Jerram
  2002-11-17 14:58       ` Marius Vollmer
  1 sibling, 0 replies; 6+ messages in thread
From: Neil Jerram @ 2002-11-05 23:10 UTC (permalink / raw)
  Cc: Guile Development, Guile Users

>>>>> "Marius" == Marius Vollmer <mvo@zagadka.ping.de> writes:

    Marius> However, cough, I get this:

    guile> (use-modules (ice-9 debugger breakpoints source))
    guile> (define (f x) (let ((y 2)) ##(+ x y)))           
    Marius> ERROR: No applicable method for #<<generic> get-breakpoint (2)> in call (get-breakpoint #f 2 29)
    Marius> [...]

This is fixed now in unstable CVS (or will be within 10 minutes of
this email going).  I found 2 problems:

- failure to cope with ports whose `port-filename' is #f -- i.e. the
  readline port (how on earth did I miss this?)

- a mistake in my "simplification" of `define-option-interface' whose
  effect was to disable traps whenever a breakpoint was defined.

Brown paper bag x 1.5ish, I'd say.

        Neil



_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Breakpoint etc. support merged into CVS
  2002-11-04 18:44     ` Neil Jerram
  2002-11-05 23:10       ` Neil Jerram
@ 2002-11-17 14:58       ` Marius Vollmer
  1 sibling, 0 replies; 6+ messages in thread
From: Marius Vollmer @ 2002-11-17 14:58 UTC (permalink / raw)
  Cc: Guile Development, Guile Users

Neil Jerram <neil@ossau.uklinux.net> writes:

> Sounds good; should this use autoload as per the current treatment of
> (ice-9 debugger) and (ice-9 debug)?

Yes, sounds good.

-- 
GPG: D5D4E405 - 2F9B BCCC 8527 692A 04E3  331E FAF8 226A D5D4 E405


_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2002-11-17 14:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-10-26 19:07 Breakpoint etc. support merged into CVS Neil Jerram
2002-10-27 13:41 ` Neil Jerram
2002-11-03 18:10   ` Marius Vollmer
2002-11-04 18:44     ` Neil Jerram
2002-11-05 23:10       ` Neil Jerram
2002-11-17 14:58       ` Marius Vollmer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).