]> git.eshelyaron.com Git - emacs.git/commitdiff
(pp): Shorthand for p ARG + pr.
authorKim F. Storm <storm@cua.dk>
Mon, 4 Oct 2004 13:34:59 +0000 (13:34 +0000)
committerKim F. Storm <storm@cua.dk>
Mon, 4 Oct 2004 13:34:59 +0000 (13:34 +0000)
(ff): New command: flush frame updates (X only).

src/.gdbinit

index fe9ddf7dbb7348e88887ec283bd5b95ad7db0cae..1bcb9f6789b81a8476f66086061a407bb7acbdd9 100644 (file)
@@ -60,6 +60,16 @@ Print the emacs s-expression which is $.
 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 @@ document xreload
 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