aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2006-01-04 18:12:27 +0000
committerEli Zaretskii2006-01-04 18:12:27 +0000
commit913645cd75fa063e918fc33f7b0d091769cecc3d (patch)
treebdb42faf0b5c7c6375130b2027648f76f35712e7 /src
parent805b043931e12ab852c64f02a1cdf2d72c0b2a80 (diff)
downloademacs-913645cd75fa063e918fc33f7b0d091769cecc3d.tar.gz
emacs-913645cd75fa063e918fc33f7b0d091769cecc3d.zip
Avoid a warning message when x_error_quitter is not compiled in.
Diffstat (limited to 'src')
-rw-r--r--src/.gdbinit10
-rw-r--r--src/ChangeLog3
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
786end 794end
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 @@
12006-01-04 Eli Zaretskii <eliz@gnu.org> 12006-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