diff options
| author | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-09-18 16:31:38 -0400 |
|---|---|---|
| committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2020-11-27 22:13:26 -0500 |
| commit | fb5f2da5c06c60bbbcf68b692cef164214a8c9e8 (patch) | |
| tree | 240c8cf2b29be0a2d22b12347de39e2f44d6d2ef | |
| parent | cfc46758c6252a602eea3dbc179f8094ea2a1a85 (diff) | |
* dbus-codegen/dbus-codegen.el (dbus-codegen-object): Fix slot defs
| -rw-r--r-- | dbus-codegen.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dbus-codegen.el b/dbus-codegen.el index 049d379..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. |
