comparison src/.gdbinit @ 57306:aca7edaa93d4

(pp): Shorthand for p ARG + pr. (ff): New command: flush frame updates (X only).
author Kim F. Storm <storm@cua.dk>
date Mon, 04 Oct 2004 13:34:59 +0000
parents c17438f97e46
children d1917e4b98e7 d83f49cefda3 ff0e824afa37
comparison
equal deleted inserted replaced
57305:a2bd703d2498 57306:aca7edaa93d4
55 define pr 55 define pr
56 set debug_print ($) 56 set debug_print ($)
57 end 57 end
58 document pr 58 document pr
59 Print the emacs s-expression which is $. 59 Print the emacs s-expression which is $.
60 Works only when an inferior emacs is executing.
61 end
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
60 Works only when an inferior emacs is executing. 70 Works only when an inferior emacs is executing.
61 end 71 end
62 72
63 define xtype 73 define xtype
64 xgettype $ 74 xgettype $
427 with gdb 5.0.) 437 with gdb 5.0.)
428 This function reloads them. 438 This function reloads them.
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
435 455
436 # Call xreload if a new Emacs executable is loaded. 456 # Call xreload if a new Emacs executable is loaded.