# HG changeset patch # User Kim F. Storm # Date 1096896899 0 # Node ID aca7edaa93d4450079caa627cbb09de977d6f697 # Parent a2bd703d24985cfe19bec94e85f28fffc449d075 (pp): Shorthand for p ARG + pr. (ff): New command: flush frame updates (X only). diff -r a2bd703d2498 -r aca7edaa93d4 src/.gdbinit --- a/src/.gdbinit Mon Oct 04 13:34:31 2004 +0000 +++ b/src/.gdbinit Mon Oct 04 13:34:59 2004 +0000 @@ -60,6 +60,16 @@ Works only when an inferior emacs is executing. end +# Print out s-expressions +define pp + set $tmp = $arg0 + set debug_print ($tmp) +end +document pp +Print the argument as an emacs s-expression +Works only when an inferior emacs is executing. +end + define xtype xgettype $ output $type @@ -429,6 +439,16 @@ end xreload +# Flush display (X only) +define ff + set x_flush (0) +end +document ff +Flush pending X window display updates to screen. +Works only when an inferior emacs is executing. +end + + define hook-run xreload end