summaryrefslogtreecommitdiff
path: root/dbus-codegen.el
diff options
context:
space:
mode:
authorDaiki Ueno <ueno@gnu.org>2022-03-06 07:25:46 +0100
committerDaiki Ueno <ueno@gnu.org>2022-03-06 07:25:46 +0100
commit04114e4cbc8f422e6b77cfc202d1109c96316117 (patch)
tree3875f48ea2f1f573aa2ddcac8ec5d8952d8f56af /dbus-codegen.el
parent6644979dfe6a15aceea1deaa8ab145a652983372 (diff)
parentfb5f2da5c06c60bbbcf68b692cef164214a8c9e8 (diff)
Merge commit 'fb5f2da5c0'externals/dbus-codegen
Diffstat (limited to 'dbus-codegen.el')
-rw-r--r--dbus-codegen.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/dbus-codegen.el b/dbus-codegen.el
index 5f60dd1..334e20b 100644
--- a/dbus-codegen.el
+++ b/dbus-codegen.el
@@ -1,6 +1,6 @@
;;; dbus-codegen.el --- Lisp code generation for D-Bus. -*- lexical-binding: t; -*-
-;; Copyright (C) 2015 Free Software Foundation, Inc.
+;; Copyright (C) 2015-2019 Free Software Foundation, Inc.
;; Author: Daiki Ueno <ueno@gnu.org>
;; Keywords: comm, dbus, convenience
@@ -168,10 +168,10 @@
;; Base type of a D-Bus proxy and a skeleton.
(cl-defstruct (dbus-codegen-object
(:constructor nil))
- (bus :read-only t)
- (service :read-only t)
- (path :read-only t)
- (interface :read-only t)
+ (bus nil :read-only t)
+ (service nil :read-only t)
+ (path nil :read-only t)
+ (interface nil :read-only t)
registration-list)
;; Base type of a D-Bus proxy.
@@ -626,7 +626,7 @@ XML is either a string which defines the interface of the D-Bus
proxy, or a Lisp form which returns a string. The format of the
string must comply with the standard D-Bus introspection data
format as described in:
-`http://dbus.freedesktop.org/doc/dbus-specification.html#introspection-format>'.
+`http://dbus.freedesktop.org/doc/dbus-specification.html#introspection-format'.
INTERFACE is a name of interface which is represented by this
proxy.
@@ -828,7 +828,7 @@ XML is either a string which defines the interface of the D-Bus
skeleton, or a Lisp form which returns a string. The format of the
string must comply with the standard D-Bus introspection data
format as described in:
-`http://dbus.freedesktop.org/doc/dbus-specification.html#introspection-format>'.
+`http://dbus.freedesktop.org/doc/dbus-specification.html#introspection-format'.
INTERFACE is a name of interface which is represented by this
skeleton.