diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2014-02-27 16:36:14 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2014-02-27 16:36:14 +0100 |
commit | d8c25f59d6b1df65cd1a03deb6341524d2c481b8 (patch) | |
tree | aa2d8d343f027d9a7b7574259d38d4bc3449c28f /src/dbusbind.c | |
parent | 298520dfb7f609e41db1368ff47834d3d04e2183 (diff) | |
download | emacs-d8c25f59d6b1df65cd1a03deb6341524d2c481b8.tar.gz |
* dbusbind.c (Fdbus__init_bus, Qdbus__init_bus, Sdbus__init_bus):
Rename from Fdbus_init_bus_1, Qdbus_init_bus_1, Sdbus_init_bus_1.
Diffstat (limited to 'src/dbusbind.c')
-rw-r--r-- | src/dbusbind.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/dbusbind.c b/src/dbusbind.c index 460733c7239..8ebc56c72c4 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c @@ -42,7 +42,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ /* Subroutines. */ -static Lisp_Object Qdbus_init_bus_1; +static Lisp_Object Qdbus__init_bus; static Lisp_Object Qdbus_get_unique_name; static Lisp_Object Qdbus_message_internal; @@ -1094,7 +1094,7 @@ xd_close_bus (Lisp_Object bus) if (NILP (val)) return; - busobj = CDR_SAFE(val); + busobj = CDR_SAFE (val); if (NILP (busobj)) { xd_registered_buses = Fdelete (val, xd_registered_buses); return; @@ -1121,11 +1121,11 @@ xd_close_bus (Lisp_Object bus) return; } -DEFUN ("dbus-init-bus-1", Fdbus_init_bus_1, Sdbus_init_bus_1, 1, 2, 0, +DEFUN ("dbus--init-bus", Fdbus__init_bus, Sdbus__init_bus, 1, 2, 0, doc: /* Establish the connection to D-Bus BUS. -This function is dbus-internal. You almost certainly want to use -dbus-init-bus. +This function is dbus internal. You almost certainly want to use +`dbus-init-bus'. BUS can be either the symbol `:system' or the symbol `:session', or it can be a string denoting the address of the corresponding bus. For @@ -1745,8 +1745,8 @@ void syms_of_dbusbind (void) { - DEFSYM (Qdbus_init_bus_1, "dbus-init-bus-1"); - defsubr (&Sdbus_init_bus_1); + DEFSYM (Qdbus__init_bus, "dbus--init-bus"); + defsubr (&Sdbus__init_bus); DEFSYM (Qdbus_get_unique_name, "dbus-get-unique-name"); defsubr (&Sdbus_get_unique_name); |