diff options
| author | Eli Zaretskii | 2006-01-04 18:12:27 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-01-04 18:12:27 +0000 |
| commit | 913645cd75fa063e918fc33f7b0d091769cecc3d (patch) | |
| tree | bdb42faf0b5c7c6375130b2027648f76f35712e7 | |
| parent | 805b043931e12ab852c64f02a1cdf2d72c0b2a80 (diff) | |
| download | emacs-913645cd75fa063e918fc33f7b0d091769cecc3d.tar.gz emacs-913645cd75fa063e918fc33f7b0d091769cecc3d.zip | |
Avoid a warning message when x_error_quitter is not compiled in.
| -rw-r--r-- | src/.gdbinit | 10 | ||||
| -rw-r--r-- | src/ChangeLog | 3 |
2 files changed, 12 insertions, 1 deletions
diff --git a/src/.gdbinit b/src/.gdbinit index 48a0fecc0cf..f00a5449531 100644 --- a/src/.gdbinit +++ b/src/.gdbinit | |||
| @@ -782,7 +782,15 @@ else | |||
| 782 | # If we are running in synchronous mode, we want a chance to look around | 782 | # If we are running in synchronous mode, we want a chance to look around |
| 783 | # before Emacs exits. Perhaps we should put the break somewhere else | 783 | # before Emacs exits. Perhaps we should put the break somewhere else |
| 784 | # instead... | 784 | # instead... |
| 785 | break x_error_quitter | 785 | xgetptr Vwindow_system |
| 786 | set $tem = (struct Lisp_Symbol *) $ptr | ||
| 787 | xgetptr $tem->xname | ||
| 788 | set $tem = (struct Lisp_String *) $ptr | ||
| 789 | set $tem = (char *) $tem->data | ||
| 790 | # x_error_quitter is defined only on X | ||
| 791 | if $tem[0] == 'x' && $tem[1] == '\0' | ||
| 792 | break x_error_quitter | ||
| 793 | end | ||
| 786 | end | 794 | end |
| 787 | 795 | ||
| 788 | # arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe | 796 | # arch-tag: 12f34321-7bfa-4240-b77a-3cd3a1696dfe |
diff --git a/src/ChangeLog b/src/ChangeLog index cb01d728cff..75a0dcc5890 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2006-01-04 Eli Zaretskii <eliz@gnu.org> | 1 | 2006-01-04 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * .gdbinit: Avoid a warning message when x_error_quitter is not | ||
| 4 | compiled in. | ||
| 5 | |||
| 3 | * process.c [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support | 6 | * process.c [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support |
| 4 | for w32. | 7 | for w32. |
| 5 | 8 | ||