diff options
author | Doug Evans <xdje42@gmail.com> | 2014-07-26 14:58:58 -0700 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2014-07-26 14:58:58 -0700 |
commit | ee7333ae06f46f3a6909a0059c2f0bd441a54bfe (patch) | |
tree | e1c478aacb968406633bb216ccf56be62a25ca60 /gdb/ChangeLog | |
parent | 74edf51613b507d1f27d66360cd8fdd8a253e88a (diff) | |
download | gdb-ee7333ae06f46f3a6909a0059c2f0bd441a54bfe.zip gdb-ee7333ae06f46f3a6909a0059c2f0bd441a54bfe.tar.gz gdb-ee7333ae06f46f3a6909a0059c2f0bd441a54bfe.tar.bz2 |
PR guile/17177
* guile/lib/gdb.scm (pretty-printers): Export.
(set-pretty-printers!): Export.
* guile/lib/gdb/printing.scm (gdb module): Update.
(prepend-pretty-printer!, append-pretty-printer!): Update.
* guile/scm-pretty-print.c (pretty_printer_list_name): Delete.
(pretty_printer_list_var): Delete.
(pretty_printer_list): New static global.
(gdbscm_pretty_printers): New function.
(gdbscm_set_pretty_printers_x): New function.
(ppscm_find_pretty_printer_from_gdb): Update.
(pretty_printer_functions): Add pretty-printers, set-pretty-printers!.
(gdbscm_initialize_pretty_printers): Update.
doc/
* guile.texi (Guile Pretty Printing API): Fix typo.
Document set-pretty-printers!, pretty-printers.
(Selecting Guile Pretty-Printers): Update.
Mention program-space based pretty-printers.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c5ebd2a..3243afd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,21 @@ 2014-07-26 Doug Evans <xdje42@gmail.com> + PR guile/17177 + * guile/lib/gdb.scm (pretty-printers): Export. + (set-pretty-printers!): Export. + * guile/lib/gdb/printing.scm (gdb module): Update. + (prepend-pretty-printer!, append-pretty-printer!): Update. + * guile/scm-pretty-print.c (pretty_printer_list_name): Delete. + (pretty_printer_list_var): Delete. + (pretty_printer_list): New static global. + (gdbscm_pretty_printers): New function. + (gdbscm_set_pretty_printers_x): New function. + (ppscm_find_pretty_printer_from_gdb): Update. + (pretty_printer_functions): Add pretty-printers, set-pretty-printers!. + (gdbscm_initialize_pretty_printers): Update. + +2014-07-26 Doug Evans <xdje42@gmail.com> + PR 17185 * configure.ac: Add check for header gc/gc.h. Add check for function setenv. |