From: Michael Albinus Date: Sun, 12 Oct 2008 20:07:49 +0000 (+0000) Subject: * net/dbus.el (dbus-service-emacs, dbus-path-emacs): New defconst. X-Git-Tag: emacs-pretest-23.0.90~2517 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=65b7cb2c90bcab32cad51617e4ce15cc712f4f3a;p=emacs.git * net/dbus.el (dbus-service-emacs, dbus-path-emacs): New defconst. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 46e7319bc64..bab7c350720 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-10-12 Michael Albinus + + * net/dbus.el (dbus-service-emacs, dbus-path-emacs): New defconst. + 2008-10-12 Chong Yidong * startup.el (command-line): If toolbar is disabled but ought to diff --git a/lisp/net/dbus.el b/lisp/net/dbus.el index 955e99e3e54..53eb4b57070 100644 --- a/lisp/net/dbus.el +++ b/lisp/net/dbus.el @@ -65,6 +65,12 @@ (defconst dbus-interface-properties (concat dbus-interface-dbus ".Properties") "The interface for property objects.") +(defconst dbus-service-emacs "org.gnu.Emacs" + "The well known service name of Emacs.") + +(defconst dbus-path-emacs "/org/gnu/Emacs" + "The object path head used by Emacs.") + (defconst dbus-message-type-invalid 0 "This value is never a valid message type.")