aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2004-10-04 13:34:59 +0000
committerKim F. Storm2004-10-04 13:34:59 +0000
commit6c5d0c5224d10720ec3039bf7b4bbe3254d7b228 (patch)
tree564c0ee6db8ed354ad85cc2ebbc9356288db1ecf /src
parent904db1a29f0d107e51f294029181ffec8a4be80b (diff)
downloademacs-6c5d0c5224d10720ec3039bf7b4bbe3254d7b228.tar.gz
emacs-6c5d0c5224d10720ec3039bf7b4bbe3254d7b228.zip
(pp): Shorthand for p ARG + pr.
(ff): New command: flush frame updates (X only).
Diffstat (limited to 'src')
-rw-r--r--src/.gdbinit20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/.gdbinit b/src/.gdbinit
index fe9ddf7dbb7..1bcb9f6789b 100644
--- a/src/.gdbinit
+++ b/src/.gdbinit
@@ -60,6 +60,16 @@ Print the emacs s-expression which is $.
60Works only when an inferior emacs is executing. 60Works only when an inferior emacs is executing.
61end 61end
62 62
63# Print out s-expressions
64define pp
65 set $tmp = $arg0
66 set debug_print ($tmp)
67end
68document pp
69Print the argument as an emacs s-expression
70Works only when an inferior emacs is executing.
71end
72
63define xtype 73define xtype
64 xgettype $ 74 xgettype $
65 output $type 75 output $type
@@ -429,6 +439,16 @@ document xreload
429end 439end
430xreload 440xreload
431 441
442# Flush display (X only)
443define ff
444 set x_flush (0)
445end
446document ff
447Flush pending X window display updates to screen.
448Works only when an inferior emacs is executing.
449end
450
451
432define hook-run 452define hook-run
433 xreload 453 xreload
434end 454end