diff options
| author | Michael Albinus | 2012-02-02 13:47:09 +0100 |
|---|---|---|
| committer | Michael Albinus | 2012-02-02 13:47:09 +0100 |
| commit | 6bee44d6400c47201de3abfef17b63ce9acfb8c9 (patch) | |
| tree | 92e7e83a6c9eef6d5e9323dbd25459b9c24259c3 /src/dbusbind.c | |
| parent | 9f6e692e6490ff5a71b4394b8621fbea2f627d72 (diff) | |
| download | emacs-6bee44d6400c47201de3abfef17b63ce9acfb8c9.tar.gz emacs-6bee44d6400c47201de3abfef17b63ce9acfb8c9.zip | |
* dbusbind.c (Fdbus_register_method): Mention the return value
:ignore in the docstring.
Diffstat (limited to 'src/dbusbind.c')
| -rw-r--r-- | src/dbusbind.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/dbusbind.c b/src/dbusbind.c index c89867fbae6..ad1a3f3cbe8 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c | |||
| @@ -2162,10 +2162,13 @@ DONT-REGISTER-SERVICE below). | |||
| 2162 | 2162 | ||
| 2163 | PATH is the D-Bus object path SERVICE is registered (See discussion of | 2163 | PATH is the D-Bus object path SERVICE is registered (See discussion of |
| 2164 | DONT-REGISTER-SERVICE below). INTERFACE is the interface offered by | 2164 | DONT-REGISTER-SERVICE below). INTERFACE is the interface offered by |
| 2165 | SERVICE. It must provide METHOD. HANDLER is a Lisp function to be | 2165 | SERVICE. It must provide METHOD. |
| 2166 | called when a method call is received. It must accept the input | 2166 | |
| 2167 | arguments of METHOD. The return value of HANDLER is used for | 2167 | HANDLER is a Lisp function to be called when a method call is |
| 2168 | composing the returning D-Bus message. | 2168 | received. It must accept the input arguments of METHOD. The return |
| 2169 | value of HANDLER is used for composing the returning D-Bus message. | ||
| 2170 | In case HANDLER shall return a reply message with an empty argument | ||
| 2171 | list, HANDLER must return the symbol `:ignore'. | ||
| 2169 | 2172 | ||
| 2170 | When DONT-REGISTER-SERVICE is non-nil, the known name SERVICE is not | 2173 | When DONT-REGISTER-SERVICE is non-nil, the known name SERVICE is not |
| 2171 | registered. This means that other D-Bus clients have no way of | 2174 | registered. This means that other D-Bus clients have no way of |