aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2008-11-28 14:48:05 +0000
committerRichard M. Stallman2008-11-28 14:48:05 +0000
commitac134f2fc7e67f2a52e969918deb0262673325c0 (patch)
tree11c792d9b9129a5d93f384393fc73c77d955365f
parent8b80cdf500c514dc9c448b4fe37265cf16127ae5 (diff)
downloademacs-ac134f2fc7e67f2a52e969918deb0262673325c0.tar.gz
emacs-ac134f2fc7e67f2a52e969918deb0262673325c0.zip
(Receiving Method Calls): Clean up previous change.
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/dbus.texi18
2 files changed, 14 insertions, 8 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 55d36c54100..e694f33efb9 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
12008-11-28 Richard M Stallman <rms@gnu.org>
2
3 * dbus.texi (Receiving Method Calls): Clean up previous change.
4
12008-11-26 Michael Albinus <michael.albinus@gmx.de> 52008-11-26 Michael Albinus <michael.albinus@gmx.de>
2 6
3 * dbus.texi (Type Conversion): New defuns `dbus-string-to-byte-array', 7 * dbus.texi (Type Conversion): New defuns `dbus-string-to-byte-array',
diff --git a/doc/misc/dbus.texi b/doc/misc/dbus.texi
index b93f29a3a65..9bb444e5f70 100644
--- a/doc/misc/dbus.texi
+++ b/doc/misc/dbus.texi
@@ -1254,14 +1254,16 @@ registered.
1254@var{interface} is the interface offered by @var{service}. It must 1254@var{interface} is the interface offered by @var{service}. It must
1255provide @var{method}. 1255provide @var{method}.
1256 1256
1257@var{handler} is a Lisp function to be called when when a @var{method} 1257@var{handler} is a Lisp function to be called when a @var{method} call
1258call is is received. It must accept as arguments the input arguments 1258is received. It must accept as arguments the input arguments of
1259of @var{method}. @var{handler} must return a list, which elements are 1259@var{method}. @var{handler} should return a list, whose elements are
1260used as arguments for the reply message of @var{method}. This list 1260to be used as arguments for the reply message of @var{method}. This
1261can be composed like the input parameters in @ref{Type Conversion}. 1261list can be composed like the input parameters in @ref{Type
1262If only one Lisp object is returned, and this object is not a consp, 1262Conversion}.
1263then @var{handler} can return this object directly, instead of of list 1263
1264of this object. 1264If @var{handler} wants to return just one Lisp object and it is not a
1265cons cell, @var{handler} can return this object directly, instead of
1266returning a list containing the object.
1265 1267
1266The default D-Bus timeout when waiting for a message reply is 25 1268The default D-Bus timeout when waiting for a message reply is 25
1267seconds. This value could be even smaller, depending on the calling 1269seconds. This value could be even smaller, depending on the calling