emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r100710: * dbus.texi (Receiving Metho


From: Michael Albinus
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100710: * dbus.texi (Receiving Method Calls): Add optional argument
Date: Sun, 04 Jul 2010 12:07:27 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100710
committer: Michael Albinus <address@hidden>
branch nick: trunk
timestamp: Sun 2010-07-04 12:07:27 +0200
message:
  * dbus.texi (Receiving Method Calls): Add optional argument
  EMITS-SIGNAL to `dbus-register-property'.
modified:
  doc/misc/ChangeLog
  doc/misc/dbus.texi
=== modified file 'doc/misc/ChangeLog'
--- a/doc/misc/ChangeLog        2010-06-16 20:08:41 +0000
+++ b/doc/misc/ChangeLog        2010-07-04 10:07:27 +0000
@@ -1,3 +1,8 @@
+2010-07-04  Michael Albinus  <address@hidden>
+
+       * dbus.texi (Receiving Method Calls): Add optional argument
+       EMITS-SIGNAL to `dbus-register-property'.
+
 2010-06-10  Glenn Morris  <address@hidden>
 
        * idlwave.texi (Load-Path Shadows):

=== modified file 'doc/misc/dbus.texi'
--- a/doc/misc/dbus.texi        2010-02-28 10:03:02 +0000
+++ b/doc/misc/dbus.texi        2010-07-04 10:07:27 +0000
@@ -1359,7 +1359,7 @@
 @end example
 @end defun
 
address@hidden dbus-register-property bus service path interface property 
access value
address@hidden dbus-register-property bus service path interface property 
access value &optional emits-signal
 With this function, an application declares a @var{property} on the D-Bus
 @var{bus}.
 
@@ -1387,7 +1387,11 @@
 
 The interface @samp{org.freedesktop.DBus.Properties} is added to
 @var{path}, including a default handler for the @samp{Get},
address@hidden and @samp{Set} methods of this interface.  Example:
address@hidden and @samp{Set} methods of this interface.  When
address@hidden is non-nil, the signal @samp{PropertiesChanged} is
+sent when the property is changed by @code{dbus-set-property}.
+
address@hidden Example:
 
 @lisp
 (dbus-register-property
@@ -1399,7 +1403,7 @@
 
 (dbus-register-property
   :session "org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
-  "org.freedesktop.TextEditor" "version" :readwrite emacs-version)
+  "org.freedesktop.TextEditor" "version" :readwrite emacs-version t)
 
 @result{} ((:session "org.freedesktop.TextEditor" "version")
     ("org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]