aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2006-01-05 17:49:42 +0000
committerEli Zaretskii2006-01-05 17:49:42 +0000
commitfeaf060aa827c2b570f90506c0b2fdeb401d73b7 (patch)
tree6950075bfccdb3bf966ebab6fc9c074a5066c6dd
parenta203a18cc49f1cf7155e4fc356cdc2bf26873e11 (diff)
downloademacs-feaf060aa827c2b570f90506c0b2fdeb401d73b7.tar.gz
emacs-feaf060aa827c2b570f90506c0b2fdeb401d73b7.zip
Fix last change.
-rw-r--r--src/.gdbinit23
-rw-r--r--src/ChangeLog4
2 files changed, 19 insertions, 8 deletions
diff --git a/src/.gdbinit b/src/.gdbinit
index f00a5449531..c0e68b32872 100644
--- a/src/.gdbinit
+++ b/src/.gdbinit
@@ -771,26 +771,33 @@ xgetptr $tem->xname
771set $tem = (struct Lisp_String *) $ptr 771set $tem = (struct Lisp_String *) $ptr
772set $tem = (char *) $tem->data 772set $tem = (char *) $tem->data
773 773
774# Don't let abort actually run, as it will make stdio stop working and
775# therefore the `pr' command above as well.
774if $tem[0] == 'w' && $tem[1] == 'i' && $tem[2] == 'n' && $tem[3] == 'd' 776if $tem[0] == 'w' && $tem[1] == 'i' && $tem[2] == 'n' && $tem[3] == 'd'
775 # The windows-nt build replaces abort with its own function. 777 # The windows-nt build replaces abort with its own function.
776 break w32_abort 778 break w32_abort
777else 779else
778 # Don't let abort actually run, as it will make
779 # stdio stop working and therefore the `pr' command above as well.
780 break abort 780 break abort
781end
781 782
782 # If we are running in synchronous mode, we want a chance to look around 783# x_error_quitter is defined only on X. But window-system is set up
783 # before Emacs exits. Perhaps we should put the break somewhere else 784# only at run time, during Emacs startup, so we need to defer setting
784 # instead... 785# the breakpoint. init_sys_modes is the first function called on
786# every platform after init_display, where window-system is set.
787tbreak init_sys_modes
788commands
789 silent
785 xgetptr Vwindow_system 790 xgetptr Vwindow_system
786 set $tem = (struct Lisp_Symbol *) $ptr 791 set $tem = (struct Lisp_Symbol *) $ptr
787 xgetptr $tem->xname 792 xgetptr $tem->xname
788 set $tem = (struct Lisp_String *) $ptr 793 set $tem = (struct Lisp_String *) $ptr
789 set $tem = (char *) $tem->data 794 set $tem = (char *) $tem->data
790 # x_error_quitter is defined only on X 795 # If we are running in synchronous mode, we want a chance to look
796 # around before Emacs exits. Perhaps we should put the break
797 # somewhere else instead...
791 if $tem[0] == 'x' && $tem[1] == '\0' 798 if $tem[0] == 'x' && $tem[1] == '\0'
792 break x_error_quitter 799 break abort
793 end 800 end
801 continue
794end 802end
795
796# arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe 803# arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe
diff --git a/src/ChangeLog b/src/ChangeLog
index 46793c3361e..be66b4c9095 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12006-01-05 Eli Zaretskii <eliz@gnu.org>
2
3 * .gdbinit: Fix last change.
4
12006-01-05 Kim F. Storm <storm@cua.dk> 52006-01-05 Kim F. Storm <storm@cua.dk>
2 6
3 * process.c (Fmake_network_process): Use AF_INET instead of 7 * process.c (Fmake_network_process): Use AF_INET instead of