comparison etc/DEBUG @ 98620:9c8d02adc5c4

`recent_keys' now holds last 300 keystrokes, not 100.
author Romain Francoise <romain@orebokech.com>
date Sat, 11 Oct 2008 18:35:15 +0000
parents cbf5528cf447
children c90853557b90
comparison
equal deleted inserted replaced
98619:83df7259552d 98620:9c8d02adc5c4
178 (gdb) p &$ 178 (gdb) p &$
179 $4 = (int *) 0x411008 179 $4 = (int *) 0x411008
180 180
181 Here's a related example of macros and the GDB `define' command. 181 Here's a related example of macros and the GDB `define' command.
182 There are many Lisp vectors such as `recent_keys', which contains the 182 There are many Lisp vectors such as `recent_keys', which contains the
183 last 100 keystrokes. We can print this Lisp vector 183 last 300 keystrokes. We can print this Lisp vector
184 184
185 p recent_keys 185 p recent_keys
186 pr 186 pr
187 187
188 But this may be inconvenient, since `recent_keys' is much more verbose 188 But this may be inconvenient, since `recent_keys' is much more verbose