Mercurial > emacs
comparison src/.gdbinit @ 83513:966a40e7fb54
Merged from emacs@sv.gnu.org
Patches applied:
* emacs@sv.gnu.org/emacs--devo--0--patch-234
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-235
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-236
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-237
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-238
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-239
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-240
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-241
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-242
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-243
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-244
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-245
(Ffield_beginning, find_field): Undo change of 2006-04-23.
* emacs@sv.gnu.org/emacs--devo--0--patch-246
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-247
Rcirc patch from Ryan Yeske
* emacs@sv.gnu.org/emacs--devo--0--patch-248
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-249
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-250
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-251
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-87
Merge from emacs--devo--0
* emacs@sv.gnu.org/gnus--rel--5.10--patch-88
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-89
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-90
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-91
Merge from emacs--devo--0
* emacs@sv.gnu.org/gnus--rel--5.10--patch-92
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-93
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-94
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-95
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-553
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Fri, 28 Apr 2006 14:48:18 +0000 |
parents | c1e013e3dc0e 039ae41bde1a |
children | 1321f6cfb389 |
comparison
equal
deleted
inserted
replaced
83512:5d328dadd0f4 | 83513:966a40e7fb54 |
---|---|
86 end | 86 end |
87 | 87 |
88 # Print out s-expressions from tool bar | 88 # Print out s-expressions from tool bar |
89 define pp1 | 89 define pp1 |
90 set $tmp = $arg0 | 90 set $tmp = $arg0 |
91 echo $arg0 | |
92 printf " = " | |
93 set $output_debug = print_output_debug_flag | 91 set $output_debug = print_output_debug_flag |
94 set print_output_debug_flag = 0 | 92 set print_output_debug_flag = 0 |
95 set safe_debug_print ($tmp) | 93 set safe_debug_print ($tmp) |
96 set print_output_debug_flag = $output_debug | 94 set print_output_debug_flag = $output_debug |
97 end | 95 end |
98 document pp1 | 96 document pp1 |
99 Print the argument as an emacs s-expression | 97 Print the argument as an emacs s-expression. |
100 Works only when an inferior emacs is executing. | 98 Works only when an inferior emacs is executing. |
101 For use on tool bar when debugging in Emacs | 99 For use on tool bar when debugging in Emacs |
102 where the variable name would not otherwise | 100 where the variable name would not otherwise |
103 be recorded in the GUD buffer. | 101 be recorded in the GUD buffer. |
104 end | 102 end |
117 end | 115 end |
118 | 116 |
119 # Print value of lisp variable | 117 # Print value of lisp variable |
120 define pv1 | 118 define pv1 |
121 set $tmp = "$arg0" | 119 set $tmp = "$arg0" |
122 echo $arg0 | |
123 printf " = " | |
124 set $output_debug = print_output_debug_flag | 120 set $output_debug = print_output_debug_flag |
125 set print_output_debug_flag = 0 | 121 set print_output_debug_flag = 0 |
126 set safe_debug_print (find_symbol_value (intern ($tmp))) | 122 set safe_debug_print (find_symbol_value (intern ($tmp))) |
127 set print_output_debug_flag = $output_debug | 123 set print_output_debug_flag = $output_debug |
128 end | 124 end |
129 document pv1 | 125 document pv1 |
130 Print the value of the lisp variable given as argument. | 126 Print the value of the lisp variable given as argument. |
131 Works only when an inferior emacs is executing. | 127 Works only when an inferior emacs is executing. |
132 For use on tool bar when debugging in Emacs | 128 For use when debugging in Emacs where the variable |
133 where the variable name would not otherwise | 129 name would not otherwise be recorded in the GUD buffer. |
134 be recorded in the GUD buffer. | |
135 end | 130 end |
136 | 131 |
137 # Print out current buffer point and boundaries | 132 # Print out current buffer point and boundaries |
138 define ppt | 133 define ppt |
139 set $b = current_buffer | 134 set $b = current_buffer |