comparison src/.gdbinit @ 90286:5b7d410e31f9

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-7 Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 4-14) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (base, patch 1-7) - tag of miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-187 - Update from CVS - Merge from emacs--devo--0 * miles@gnu.org--gnu-2005/gnus--rel--5.10 (patch 187) - Update from CVS
author Miles Bader <miles@gnu.org>
date Wed, 25 Jan 2006 07:10:04 +0000
parents 7beb78bc1f8e 9b3bace59343
children c5406394f567
comparison
equal deleted inserted replaced
90285:5251b70632c4 90286:5b7d410e31f9
787 show environment TERM 787 show environment TERM
788 set args -geometry 80x40+0+0 788 set args -geometry 80x40+0+0
789 789
790 # People get bothered when they see messages about non-existent functions... 790 # People get bothered when they see messages about non-existent functions...
791 xgetptr Vsystem_type 791 xgetptr Vsystem_type
792 set $tem = (struct Lisp_Symbol *) $ptr 792 # $ptr is NULL in temacs
793 xgetptr $tem->xname 793 if ($ptr != 0)
794 set $tem = (struct Lisp_String *) $ptr 794 set $tem = (struct Lisp_Symbol *) $ptr
795 set $tem = (char *) $tem->data 795 xgetptr $tem->xname
796 796 set $tem = (struct Lisp_String *) $ptr
797 # Don't let abort actually run, as it will make stdio stop working and 797 set $tem = (char *) $tem->data
798 # therefore the `pr' command above as well. 798
799 if $tem[0] == 'w' && $tem[1] == 'i' && $tem[2] == 'n' && $tem[3] == 'd' 799 # Don't let abort actually run, as it will make stdio stop working and
800 # The windows-nt build replaces abort with its own function. 800 # therefore the `pr' command above as well.
801 break w32_abort 801 if $tem[0] == 'w' && $tem[1] == 'i' && $tem[2] == 'n' && $tem[3] == 'd'
802 else 802 # The windows-nt build replaces abort with its own function.
803 break abort 803 break w32_abort
804 else
805 break abort
806 end
804 end 807 end
805 808
806 # x_error_quitter is defined only on X. But window-system is set up 809 # x_error_quitter is defined only on X. But window-system is set up
807 # only at run time, during Emacs startup, so we need to defer setting 810 # only at run time, during Emacs startup, so we need to defer setting
808 # the breakpoint. init_sys_modes is the first function called on 811 # the breakpoint. init_sys_modes is the first function called on