+2009-08-06 Nick Roberts <nickrob@snap.net.nz>
+
+ * etc/images/gud/record-start.xpm, etc/images/gud/record-stop.xpm,
+ * etc/images/gud/reverse-continue.xpm, etc/images/gud/reverse-next.xpm
+ * etc/images/gud/reverse-finish.xpm, etc/images/gud/reverse-nexti.xpm,
+ * etc/images/gud/reverse-step.xpm, etc/images/gud/reverse-stepi.xpm:
+ Icons for reverse debugging.
+
2009-07-29 Chong Yidong <cyd@stupidchicken.com>
* Version 23.1 released.
--- /dev/null
+/* XPM */
+static char * break_xpm[] = {
+"24 24 2 1",
+" c None",
+". c #cc0033",
+" ",
+" ",
+" ",
+" ",
+" .... ",
+" ........ ",
+" .......... ",
+" ............ ",
+" .............. ",
+" .............. ",
+" ................ ",
+" ................ ",
+" ................ ",
+" ................ ",
+" .............. ",
+" .............. ",
+" ............ ",
+" .......... ",
+" ........ ",
+" .... ",
+" ",
+" ",
+" ",
+" "};
--- /dev/null
+/* XPM */
+static char * break_xpm[] = {
+"24 24 2 1",
+" c None",
+". c #cc0033",
+" ",
+" ",
+" ",
+" ",
+" .... ",
+" ........ ",
+" .......... ",
+" ............ ",
+" .............. ",
+" .............. ",
+" ................ ",
+" ................ ",
+" ................ ",
+" ................ ",
+" .............. ",
+" .............. ",
+" ............ ",
+" .......... ",
+" ........ ",
+" .... ",
+" ",
+" ",
+" ",
+" "};
--- /dev/null
+/* XPM */
+static char * reverse_continue_xpm[] = {
+"24 24 6 1",
+" c None",
+". c #D99FAA",
+"+ c #CC0033",
+"@ c #616161",
+"# c #2A1F55",
+"$ c #AA9FAA",
+" ",
+" ",
+" ",
+" ",
+" .+ ",
+" .++. ",
+" @# #@ +++++++ ",
+" @#$ $#@ .++. ",
+" ## ## .+ ",
+" ## ## ",
+" ## ## ",
+" #@ @# ",
+" ## ## ",
+" #@ @# ",
+" ## ## ",
+" ## ## ",
+" ## ## ",
+" @#$ $#@ ",
+" @# #@ ",
+" ",
+" ",
+" ",
+" ",
+" "};
--- /dev/null
+/* XPM */
+static char * reverse_step_xpm[] = {
+"24 24 6 1",
+" c None",
+". c #D40000",
+"+ c #616161",
+"@ c #2A1F55",
+"# c #ADADAD",
+"$ c #CC9999",
+" ",
+" ",
+" ",
+" ",
+" ..... ",
+" . . ",
+" . . ",
+" +@ . @+ . ",
+" +@# . #@+ . ",
+" @@ .$.$. @@ . ",
+" @@ $...$ @@ ",
+" @@ ... @@ ",
+" @+ $.$ +@ ",
+" @@ . @@ ",
+" @+ +@ ",
+" @@ @@ ",
+" @@ @@ ",
+" @@ @@ ",
+" +@# #@+ ",
+" +@ @+ ",
+" ",
+" ",
+" ",
+" "};
--- /dev/null
+/* XPM */
+static char * reverse_next_xpm[] = {
+"24 24 7 1",
+" c None",
+". c #CC0033",
+"+ c #616161",
+"@ c #2A1F55",
+"# c #ADADAD",
+"$ c #D40000",
+"% c #CC9999",
+" ",
+" ",
+" ",
+" ",
+" .......... ",
+" . . ",
+" . . ",
+" . +@ @+ . ",
+" . +@# #@+ . ",
+" $%.%$ @@ @@ . ",
+" %...% @@ @@ ",
+" ... @@ @@ ",
+" %.% @+ +@ ",
+" . @@ @@ ",
+" @+ +@ ",
+" @@ @@ ",
+" @@ @@ ",
+" @@ @@ ",
+" +@# #@+ ",
+" +@ @+ ",
+" ",
+" ",
+" ",
+" "};
--- /dev/null
+/* XPM */
+static char * reverse_nexti_xpm[] = {
+"24 24 6 1",
+" c None",
+". c #CC0033",
+"+ c #D40000",
+"@ c #CC9999",
+"# c #616161",
+"$ c #2A1F55",
+" ",
+" ",
+" ",
+" ",
+" .......... ",
+" . . ",
+" . . ",
+" . . ",
+" . . ",
+" +@.@+ # # . ",
+" @...@ #$ $# ",
+" ... #$ $# ",
+" @.@ #$ $# ",
+" . #$ $# ",
+" $# #$ ",
+" $# #$ ",
+" $# #$ ",
+" $# #$ ",
+" $ $ ",
+" ",
+" ",
+" ",
+" ",
+" "};
--- /dev/null
+/* XPM */
+static char * reverse_finish_xpm[] = {
+"24 24 7 1",
+" c None",
+". c #CC0033",
+"+ c #616161",
+"@ c #2A1F55",
+"# c #ADADAD",
+"$ c #D40000",
+"% c #CC9999",
+" ",
+" ",
+" ",
+" ",
+" ..... ",
+" . . ",
+" . . ",
+" . +@ . @+ ",
+" . +@# . #@+ ",
+" $%.%$ @@ . @@ ",
+" %...% @@ @@ ",
+" ... @@ @@ ",
+" %.% @+ +@ ",
+" . @@ @@ ",
+" @+ +@ ",
+" @@ @@ ",
+" @@ @@ ",
+" @@ @@ ",
+" +@# #@+ ",
+" +@ @+ ",
+" ",
+" ",
+" ",
+" "};
--- /dev/null
+/* XPM */
+static char * reverse_stepi_xpm[] = {
+"24 24 5 1",
+" c None",
+". c #D40000",
+"+ c #616161",
+"@ c #2A1F55",
+"# c #CC9999",
+" ",
+" ",
+" ",
+" ",
+" ..... ",
+" . . ",
+" . . ",
+" . . ",
+" + . + . ",
+" +@ .#.#. @+ . ",
+" +@ #...# @+ ",
+" +@ ... @+ ",
+" +@ #.# @+ ",
+" @+ . +@ ",
+" @+ +@ ",
+" @+ +@ ",
+" @+ +@ ",
+" @ @ ",
+" ",
+" ",
+" ",
+" ",
+" ",
+" "};
+2009-08-06 Nick Roberts <nickrob@snap.net.nz>
+
+ * progmodes/gdb-ui.el (gdb-recording): New variable.
+ (gdb): Define new commands for reverse execution.
+ (gdb-toggle-recording): Start/stop recording of debug session.
+ (gdb-recording-handler): Handler for output from above command.
+
2009-07-29 Chong Yidong <cyd@stupidchicken.com>
* Version 23.1 released.