diff options
| author | Richard M. Stallman | 2008-11-28 14:48:05 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2008-11-28 14:48:05 +0000 |
| commit | ac134f2fc7e67f2a52e969918deb0262673325c0 (patch) | |
| tree | 11c792d9b9129a5d93f384393fc73c77d955365f | |
| parent | 8b80cdf500c514dc9c448b4fe37265cf16127ae5 (diff) | |
| download | emacs-ac134f2fc7e67f2a52e969918deb0262673325c0.tar.gz emacs-ac134f2fc7e67f2a52e969918deb0262673325c0.zip | |
(Receiving Method Calls): Clean up previous change.
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/dbus.texi | 18 |
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 @@ | |||
| 1 | 2008-11-28 Richard M Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * dbus.texi (Receiving Method Calls): Clean up previous change. | ||
| 4 | |||
| 1 | 2008-11-26 Michael Albinus <michael.albinus@gmx.de> | 5 | 2008-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 |
| 1255 | provide @var{method}. | 1255 | provide @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 |
| 1258 | call is is received. It must accept as arguments the input arguments | 1258 | is received. It must accept as arguments the input arguments of |
| 1259 | of @var{method}. @var{handler} must return a list, which elements are | 1259 | @var{method}. @var{handler} should return a list, whose elements are |
| 1260 | used as arguments for the reply message of @var{method}. This list | 1260 | to be used as arguments for the reply message of @var{method}. This |
| 1261 | can be composed like the input parameters in @ref{Type Conversion}. | 1261 | list can be composed like the input parameters in @ref{Type |
| 1262 | If only one Lisp object is returned, and this object is not a consp, | 1262 | Conversion}. |
| 1263 | then @var{handler} can return this object directly, instead of of list | 1263 | |
| 1264 | of this object. | 1264 | If @var{handler} wants to return just one Lisp object and it is not a |
| 1265 | cons cell, @var{handler} can return this object directly, instead of | ||
| 1266 | returning a list containing the object. | ||
| 1265 | 1267 | ||
| 1266 | The default D-Bus timeout when waiting for a message reply is 25 | 1268 | The default D-Bus timeout when waiting for a message reply is 25 |
| 1267 | seconds. This value could be even smaller, depending on the calling | 1269 | seconds. This value could be even smaller, depending on the calling |