diff options
| author | Eli Zaretskii | 2006-01-05 17:49:42 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-01-05 17:49:42 +0000 |
| commit | feaf060aa827c2b570f90506c0b2fdeb401d73b7 (patch) | |
| tree | 6950075bfccdb3bf966ebab6fc9c074a5066c6dd /src | |
| parent | a203a18cc49f1cf7155e4fc356cdc2bf26873e11 (diff) | |
| download | emacs-feaf060aa827c2b570f90506c0b2fdeb401d73b7.tar.gz emacs-feaf060aa827c2b570f90506c0b2fdeb401d73b7.zip | |
Fix last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/.gdbinit | 23 | ||||
| -rw-r--r-- | src/ChangeLog | 4 |
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 | |||
| 771 | set $tem = (struct Lisp_String *) $ptr | 771 | set $tem = (struct Lisp_String *) $ptr |
| 772 | set $tem = (char *) $tem->data | 772 | set $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. | ||
| 774 | if $tem[0] == 'w' && $tem[1] == 'i' && $tem[2] == 'n' && $tem[3] == 'd' | 776 | if $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 |
| 777 | else | 779 | else |
| 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 |
| 781 | end | ||
| 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. | ||
| 787 | tbreak init_sys_modes | ||
| 788 | commands | ||
| 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 | ||
| 794 | end | 802 | end |
| 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 @@ | |||
| 1 | 2006-01-05 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * .gdbinit: Fix last change. | ||
| 4 | |||
| 1 | 2006-01-05 Kim F. Storm <storm@cua.dk> | 5 | 2006-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 |