mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 18:40:39 -08:00
; Adjust overly long docstrings to fit 80 characters
This commit is contained in:
parent
f4ea15907a
commit
c78e16962e
45 changed files with 138 additions and 87 deletions
|
|
@ -2073,7 +2073,8 @@ either a method name, a signal name, or an error name."
|
|||
(goto-char point)))
|
||||
|
||||
(defun dbus-monitor-handler (&rest _args)
|
||||
"Default handler for the \"org.freedesktop.DBus.Monitoring.BecomeMonitor\" interface.
|
||||
"Default handler for the \"Monitoring.BecomeMonitor\" interface.
|
||||
Its full name is \"org.freedesktop.DBus.Monitoring.BecomeMonitor\".
|
||||
It will be applied for all objects created by `dbus-register-monitor'
|
||||
which don't declare an own handler. The printed timestamps do
|
||||
not reflect the time the D-Bus message has passed the D-Bus
|
||||
|
|
|
|||
|
|
@ -1049,7 +1049,7 @@ If PATTERN is omitted, it defaults to \"[ \\f\\t\\n\\r\\v]+\"."
|
|||
'dictionary-display-match-result)))
|
||||
|
||||
(defun dictionary-do-matching (word dictionary strategy function)
|
||||
"Find matches for WORD with STRATEGY in DICTIONARY and display them with FUNCTION."
|
||||
"Search for WORD with STRATEGY in DICTIONARY and display them with FUNCTION."
|
||||
(message "Lookup matching words for %s in %s using %s"
|
||||
word dictionary strategy)
|
||||
(dictionary-send-command
|
||||
|
|
|
|||
|
|
@ -798,8 +798,9 @@ see `eudc-inline-expansion-servers'."
|
|||
"Query the directory server, and return the matching responses.
|
||||
The variable `eudc-inline-query-format' controls how to associate the
|
||||
individual QUERY-WORDS with directory attribute names.
|
||||
After querying the server for the given string, the expansion specified by
|
||||
`eudc-inline-expansion-format' is applied to the matches before returning them.inserted in the buffer at point.
|
||||
After querying the server for the given string, the expansion
|
||||
specified by `eudc-inline-expansion-format' is applied to the
|
||||
matches before returning them.inserted in the buffer at point.
|
||||
Multiple servers can be tried with the same query until one finds a match,
|
||||
see `eudc-inline-expansion-servers'."
|
||||
(cond
|
||||
|
|
|
|||
|
|
@ -436,7 +436,7 @@ PASSWD is truncated to 14 bytes if longer."
|
|||
(make-string (- 15 len) 0)))))
|
||||
|
||||
(defun ntlm-smb-owf-encrypt (passwd c8)
|
||||
"Return response string of 24 bytes long for password string PASSWD based on DES encryption.
|
||||
"Return response string of 24 bytes long for PASSWD based on DES encryption.
|
||||
PASSWD is of at most 14 bytes long and the challenge string C8 of
|
||||
8 bytes long."
|
||||
(let* ((len (min (length passwd) 16))
|
||||
|
|
@ -459,7 +459,7 @@ PASSWD is of at most 14 bytes long and the challenge string C8 of
|
|||
(substring p15 7) t)))
|
||||
|
||||
(defun ntlm-smb-hash (in key forw)
|
||||
"Return hash string of length 8 for a string IN of length 8 and a string KEY of length 8.
|
||||
"Return hash string of length 8 for IN of length 8 and KEY of length 8.
|
||||
FORW is t or nil."
|
||||
(let ((out (make-string 8 0))
|
||||
(inb (make-string 64 0))
|
||||
|
|
|
|||
|
|
@ -1833,8 +1833,9 @@ a downcased host name only."
|
|||
result))))
|
||||
|
||||
(defun tramp-gvfs-handler-mounted-unmounted (mount-info)
|
||||
"Signal handler for the \"org.gtk.vfs.MountTracker.mounted\" and \
|
||||
\"org.gtk.vfs.MountTracker.unmounted\" signals."
|
||||
"Signal handler for the gvfs \"mounted\" and \"unmounted\" signals.
|
||||
Their full names are \"org.gtk.vfs.MountTracker.mounted\" and
|
||||
\"org.gtk.vfs.MountTracker.unmounted\"."
|
||||
(ignore-errors
|
||||
(let ((signal-name (dbus-event-member-name last-input-event))
|
||||
(elt mount-info))
|
||||
|
|
@ -2090,8 +2091,10 @@ It was \"a(say)\", but has changed to \"a{sv})\"."
|
|||
`(:struct ,(tramp-gvfs-dbus-string-to-byte-array mount-pref) ,mount-spec)))
|
||||
|
||||
(defun tramp-gvfs-handler-volumeadded-volumeremoved (_dbus-name _id volume)
|
||||
"Signal handler for the \"org.gtk.Private.RemoteVolumeMonitor.VolumeAdded\" \
|
||||
and \"org.gtk.Private.RemoteVolumeMonitor.VolumeRemoved\" signals."
|
||||
"Signal handler for the gvfs \"VolumeAdded\" and \"VolumeRemoved\" signals.
|
||||
Their full names are
|
||||
\"org.gtk.Private.RemoteVolumeMonitor.VolumeAdded\" and
|
||||
\"org.gtk.Private.RemoteVolumeMonitor.VolumeRemoved\"."
|
||||
(ignore-errors
|
||||
(let* ((signal-name (dbus-event-member-name last-input-event))
|
||||
(uri (url-generic-parse-url (nth 5 volume)))
|
||||
|
|
|
|||
|
|
@ -1699,7 +1699,7 @@ ID-FORMAT valid values are `string' and `integer'."
|
|||
;; FIXME: Fix function to work with count parameter.
|
||||
(defun tramp-do-directory-files-and-attributes-with-stat
|
||||
(vec localname &optional id-format)
|
||||
"Implement `directory-files-and-attributes' for Tramp files using stat(1) command."
|
||||
"Implement `directory-files-and-attributes' for Tramp files with stat(1) command."
|
||||
(tramp-message vec 5 "directory-files-and-attributes with stat: %s" localname)
|
||||
(tramp-send-command-and-read
|
||||
vec
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue