diff options
| author | Michael Albinus | 2008-10-12 20:07:49 +0000 |
|---|---|---|
| committer | Michael Albinus | 2008-10-12 20:07:49 +0000 |
| commit | 65b7cb2c90bcab32cad51617e4ce15cc712f4f3a (patch) | |
| tree | c207a700fd9a6db76d7831f0f2db092edffa4063 | |
| parent | 375e8351402fabf498f6b32dbda7982232225d7b (diff) | |
| download | emacs-65b7cb2c90bcab32cad51617e4ce15cc712f4f3a.tar.gz emacs-65b7cb2c90bcab32cad51617e4ce15cc712f4f3a.zip | |
* net/dbus.el (dbus-service-emacs, dbus-path-emacs): New defconst.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/net/dbus.el | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 46e7319bc64..bab7c350720 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-10-12 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * net/dbus.el (dbus-service-emacs, dbus-path-emacs): New defconst. | ||
| 4 | |||
| 1 | 2008-10-12 Chong Yidong <cyd@stupidchicken.com> | 5 | 2008-10-12 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * startup.el (command-line): If toolbar is disabled but ought to | 7 | * 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 @@ | |||
| 65 | (defconst dbus-interface-properties (concat dbus-interface-dbus ".Properties") | 65 | (defconst dbus-interface-properties (concat dbus-interface-dbus ".Properties") |
| 66 | "The interface for property objects.") | 66 | "The interface for property objects.") |
| 67 | 67 | ||
| 68 | (defconst dbus-service-emacs "org.gnu.Emacs" | ||
| 69 | "The well known service name of Emacs.") | ||
| 70 | |||
| 71 | (defconst dbus-path-emacs "/org/gnu/Emacs" | ||
| 72 | "The object path head used by Emacs.") | ||
| 73 | |||
| 68 | (defconst dbus-message-type-invalid 0 | 74 | (defconst dbus-message-type-invalid 0 |
| 69 | "This value is never a valid message type.") | 75 | "This value is never a valid message type.") |
| 70 | 76 | ||