diff options
| author | Kim F. Storm | 2004-10-04 13:34:59 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-10-04 13:34:59 +0000 |
| commit | 6c5d0c5224d10720ec3039bf7b4bbe3254d7b228 (patch) | |
| tree | 564c0ee6db8ed354ad85cc2ebbc9356288db1ecf /src | |
| parent | 904db1a29f0d107e51f294029181ffec8a4be80b (diff) | |
| download | emacs-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/.gdbinit | 20 |
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 $. | |||
| 60 | Works only when an inferior emacs is executing. | 60 | Works only when an inferior emacs is executing. |
| 61 | end | 61 | end |
| 62 | 62 | ||
| 63 | # Print out s-expressions | ||
| 64 | define pp | ||
| 65 | set $tmp = $arg0 | ||
| 66 | set debug_print ($tmp) | ||
| 67 | end | ||
| 68 | document pp | ||
| 69 | Print the argument as an emacs s-expression | ||
| 70 | Works only when an inferior emacs is executing. | ||
| 71 | end | ||
| 72 | |||
| 63 | define xtype | 73 | define xtype |
| 64 | xgettype $ | 74 | xgettype $ |
| 65 | output $type | 75 | output $type |
| @@ -429,6 +439,16 @@ document xreload | |||
| 429 | end | 439 | end |
| 430 | xreload | 440 | xreload |
| 431 | 441 | ||
| 442 | # Flush display (X only) | ||
| 443 | define ff | ||
| 444 | set x_flush (0) | ||
| 445 | end | ||
| 446 | document ff | ||
| 447 | Flush pending X window display updates to screen. | ||
| 448 | Works only when an inferior emacs is executing. | ||
| 449 | end | ||
| 450 | |||
| 451 | |||
| 432 | define hook-run | 452 | define hook-run |
| 433 | xreload | 453 | xreload |
| 434 | end | 454 | end |