aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2010-10-04 10:53:48 +0900
committerKenichi Handa2010-10-04 10:53:48 +0900
commitff06de4f50becfe9d5fc16699531ce9802ee0b7f (patch)
tree7bb9e0d3b33d9469ea9018a16f9ca288fa399db6 /src
parent5886ec9c0c7a250d987ac6180577b4574ea00f21 (diff)
parent397ae2261860609d3f320b9c4255ca8f92353c50 (diff)
downloademacs-ff06de4f50becfe9d5fc16699531ce9802ee0b7f.tar.gz
emacs-ff06de4f50becfe9d5fc16699531ce9802ee0b7f.zip
merge emacs-23
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog10
-rw-r--r--src/buffer.c10
-rw-r--r--src/dbusbind.c10
3 files changed, 18 insertions, 12 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index bb20d5739de..53adc561021 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -3,6 +3,16 @@
3 * coding.c (complement_process_encoding_system): Fix previous 3 * coding.c (complement_process_encoding_system): Fix previous
4 change. 4 change.
5 5
62010-10-03 Michael Albinus <michael.albinus@gmx.de>
7
8 * dbusbind.c (syms_of_dbusbind): Move putenv call ...
9 (Fdbus_init_bus): ... here. (Bug#7113)
10
112010-10-03 Glenn Morris <rgm@gnu.org>
12
13 * buffer.c (before-change-functions, after-change-functions):
14 Three-year overdue doc fix following 2007-08-13 change.
15
62010-10-02 Kenichi Handa <handa@m17n.org> 162010-10-02 Kenichi Handa <handa@m17n.org>
7 17
8 * coding.c (coding_inherit_eol_type): If parent doesn't specify 18 * coding.c (coding_inherit_eol_type): If parent doesn't specify
diff --git a/src/buffer.c b/src/buffer.c
index adb85b83e5f..939e2bb0e19 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -6096,10 +6096,7 @@ No information is given about the length of the text after the change.
6096 6096
6097Buffer changes made while executing the `before-change-functions' 6097Buffer changes made while executing the `before-change-functions'
6098don't call any before-change or after-change functions. 6098don't call any before-change or after-change functions.
6099That's because these variables are temporarily set to nil. 6099That's because `inhibit-modification-hooks' is temporarily set non-nil.
6100As a result, a hook function cannot straightforwardly alter the
6101value of these variables. See the Emacs Lisp manual for a way of
6102accomplishing an equivalent result by using other variables.
6103 6100
6104If an unhandled error happens in running these functions, 6101If an unhandled error happens in running these functions,
6105the variable's value remains nil. That prevents the error 6102the variable's value remains nil. That prevents the error
@@ -6117,10 +6114,7 @@ and the post-change beginning and end are at the same place.)
6117 6114
6118Buffer changes made while executing the `after-change-functions' 6115Buffer changes made while executing the `after-change-functions'
6119don't call any before-change or after-change functions. 6116don't call any before-change or after-change functions.
6120That's because these variables are temporarily set to nil. 6117That's because `inhibit-modification-hooks' is temporarily set non-nil.
6121As a result, a hook function cannot straightforwardly alter the
6122value of these variables. See the Emacs Lisp manual for a way of
6123accomplishing an equivalent result by using other variables.
6124 6118
6125If an unhandled error happens in running these functions, 6119If an unhandled error happens in running these functions,
6126the variable's value remains nil. That prevents the error 6120the variable's value remains nil. That prevents the error
diff --git a/src/dbusbind.c b/src/dbusbind.c
index f3a573d3bce..460cf52364e 100644
--- a/src/dbusbind.c
+++ b/src/dbusbind.c
@@ -854,6 +854,9 @@ This is an internal function, it shall not be used outside dbus.el. */)
854 NULL, (void*) XHASH (bus), NULL)) 854 NULL, (void*) XHASH (bus), NULL))
855 XD_SIGNAL1 (build_string ("Cannot add watch functions")); 855 XD_SIGNAL1 (build_string ("Cannot add watch functions"));
856 856
857 /* We do not want to abort. */
858 putenv ("DBUS_FATAL_WARNINGS=0");
859
857 /* Return. */ 860 /* Return. */
858 return Qnil; 861 return Qnil;
859} 862}
@@ -2130,12 +2133,11 @@ message arrives. */);
2130 doc: /* If non-nil, debug messages of D-Bus bindings are raised. */); 2133 doc: /* If non-nil, debug messages of D-Bus bindings are raised. */);
2131#ifdef DBUS_DEBUG 2134#ifdef DBUS_DEBUG
2132 Vdbus_debug = Qt; 2135 Vdbus_debug = Qt;
2133 /* We can also set environment DBUS_VERBOSE=1 in order to see more 2136 /* We can also set environment variable DBUS_VERBOSE=1 in order to
2134 traces. */ 2137 see more traces. This requires libdbus-1 to be configured with
2138 --enable-verbose-mode. */
2135#else 2139#else
2136 Vdbus_debug = Qnil; 2140 Vdbus_debug = Qnil;
2137 /* We do not want to abort. */
2138 putenv ("DBUS_FATAL_WARNINGS=0");
2139#endif 2141#endif
2140 2142
2141 Fprovide (intern_c_string ("dbusbind"), Qnil); 2143 Fprovide (intern_c_string ("dbusbind"), Qnil);