diff options
| author | Paul Eggert | 2015-09-16 16:23:55 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-16 16:26:07 -0700 |
| commit | 032ce1c7d1afb23e6b1265d91c5a97e45de071ce (patch) | |
| tree | dab9ca1e540c23aeb15ee9ef8fdc6b78e1929b6d /src/dbusbind.c | |
| parent | 309d39b832ccd72f99cc726090ff03f7e146948d (diff) | |
| download | emacs-032ce1c7d1afb23e6b1265d91c5a97e45de071ce.tar.gz emacs-032ce1c7d1afb23e6b1265d91c5a97e45de071ce.zip | |
Omit unnecessary \ before paren in C docstrings
Although \( is needed in docstrings in Elisp code, it is not needed in
docstrings in C code, since C function definitiions do not start with
a parenthesis. The backslashes made the docstrings a bit harder to
read and to format in columns. Also, some C docstrings had ( in
column 1 and this did not appear to be causing any problems. So,
simplify C docstrings by replacing \( with ( and \) with ).
Diffstat (limited to 'src/dbusbind.c')
| -rw-r--r-- | src/dbusbind.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dbusbind.c b/src/dbusbind.c index e5318fd51a1..fcb6ab8b618 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c | |||
| @@ -1233,20 +1233,20 @@ This is an internal function, it shall not be used outside dbus.el. | |||
| 1233 | The following usages are expected: | 1233 | The following usages are expected: |
| 1234 | 1234 | ||
| 1235 | `dbus-call-method', `dbus-call-method-asynchronously': | 1235 | `dbus-call-method', `dbus-call-method-asynchronously': |
| 1236 | \(dbus-message-internal | 1236 | (dbus-message-internal |
| 1237 | dbus-message-type-method-call BUS SERVICE PATH INTERFACE METHOD HANDLER | 1237 | dbus-message-type-method-call BUS SERVICE PATH INTERFACE METHOD HANDLER |
| 1238 | &optional :timeout TIMEOUT &rest ARGS) | 1238 | &optional :timeout TIMEOUT &rest ARGS) |
| 1239 | 1239 | ||
| 1240 | `dbus-send-signal': | 1240 | `dbus-send-signal': |
| 1241 | \(dbus-message-internal | 1241 | (dbus-message-internal |
| 1242 | dbus-message-type-signal BUS SERVICE PATH INTERFACE SIGNAL &rest ARGS) | 1242 | dbus-message-type-signal BUS SERVICE PATH INTERFACE SIGNAL &rest ARGS) |
| 1243 | 1243 | ||
| 1244 | `dbus-method-return-internal': | 1244 | `dbus-method-return-internal': |
| 1245 | \(dbus-message-internal | 1245 | (dbus-message-internal |
| 1246 | dbus-message-type-method-return BUS SERVICE SERIAL &rest ARGS) | 1246 | dbus-message-type-method-return BUS SERVICE SERIAL &rest ARGS) |
| 1247 | 1247 | ||
| 1248 | `dbus-method-error-internal': | 1248 | `dbus-method-error-internal': |
| 1249 | \(dbus-message-internal | 1249 | (dbus-message-internal |
| 1250 | dbus-message-type-error BUS SERVICE SERIAL &rest ARGS) | 1250 | dbus-message-type-error BUS SERVICE SERIAL &rest ARGS) |
| 1251 | 1251 | ||
| 1252 | usage: (dbus-message-internal &rest REST) */) | 1252 | usage: (dbus-message-internal &rest REST) */) |
| @@ -1796,7 +1796,7 @@ string which denotes a D-Bus interface, and MEMBER, also a string, is | |||
| 1796 | either a method, a signal or a property INTERFACE is offering. All | 1796 | either a method, a signal or a property INTERFACE is offering. All |
| 1797 | arguments but BUS must not be nil. | 1797 | arguments but BUS must not be nil. |
| 1798 | 1798 | ||
| 1799 | The value in the hash table is a list of quadruple lists \((UNAME | 1799 | The value in the hash table is a list of quadruple lists ((UNAME |
| 1800 | SERVICE PATH OBJECT [RULE]) ...). SERVICE is the service name as | 1800 | SERVICE PATH OBJECT [RULE]) ...). SERVICE is the service name as |
| 1801 | registered, UNAME is the corresponding unique name. In case of | 1801 | registered, UNAME is the corresponding unique name. In case of |
| 1802 | registered methods and properties, UNAME is nil. PATH is the object | 1802 | registered methods and properties, UNAME is nil. PATH is the object |