]> git.eshelyaron.com Git - emacs.git/commitdiff
Extend D-Bus doc and test
authorMichael Albinus <michael.albinus@gmx.de>
Fri, 24 Nov 2023 15:34:26 +0000 (16:34 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Fri, 24 Nov 2023 15:34:26 +0000 (16:34 +0100)
* doc/misc/dbus.texi (Register Objects): Adapt doc of
dbus-unregister-service.

* test/lisp/net/dbus-tests.el (dbus--test-register-service):
Extend test.

doc/misc/dbus.texi
test/lisp/net/dbus-tests.el

index 2bd6b9556c8f6f95195f5030ec17998c810b4b0e..9dff54ff94a7d645c12d6d59b5c0927a98c08c11 100644 (file)
@@ -1418,6 +1418,9 @@ The name @var{service} does not exist on the bus.
 @item :not-owner
 We are not an owner of the name @var{service}.
 @end table
+
+When @var{service} is not a known name but a unique name, the function
+returns nil.
 @end defun
 
 When a name has been chosen, Emacs can offer its own methods, which
index 418ae61bb42f6e7c5c33678a229f3636db075689..66240efd8826823ef3dc5d06d849b48d87872e6d 100644 (file)
   (should (eq (dbus-unregister-service bus dbus--test-service) :non-existent))
   (should-not (member dbus--test-service (dbus-list-known-names bus)))
 
+  ;; Unregistering a unique name returns nil.
+  (should-not (dbus-unregister-service bus ":1.1"))
+
   ;; A service name is a string, constructed of at least two words
   ;; separated by ".".
   (should