> I think today is not my day to have success: > > When entering static int load_pixmap (f, name, w_ptr, h_ptr): > > Breakpoint 1, load_pixmap (f=0x9a8420, name=60552283, > w_ptr=0x9f4d54, h_ptr=0x9f4d58) at xfaces.c:1163 > (gdb) pr name > No symbol "print_output_debug_flag" in current context. > (gdb) xtype > The history is empty.
According to an earlier e-mail you compiled with -O2. Maybe it's been optimised away as it only seems to be used on Windows. But I don't quite follow what Eli suggestd anyway. I would have thought you need to type (gdb) p name (gdb) pr or (gdb) p name (gdb) xpr To do the former I think you either need to recompile without -O2 or redefine pr: define pr set debug_print ($) end but I think you can do the latter without changing anything. Incidentally if I start "gdb emacs" with "r -Q", it doesn't hit load_pixmap. -- Nick http://www.inet.net.nz/~nickrob _______________________________________________ emacs-pretest-bug mailing list [email protected] http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
