mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 18:40:39 -08:00
; Minor stylistic fixes found by checkdoc
This commit is contained in:
parent
e2861e2d08
commit
0a7bab689c
57 changed files with 132 additions and 127 deletions
|
|
@ -4723,7 +4723,7 @@ NEWNAME should be the name to give the new compressed or uncompressed file.")
|
|||
;; by using the ftp chmod command.
|
||||
(defun ange-ftp-call-chmod (args)
|
||||
(if (< (length args) 2)
|
||||
(error "ange-ftp-call-chmod: missing mode and/or filename: %s" args))
|
||||
(error "ange-ftp-call-chmod: Missing mode and/or filename: %s" args))
|
||||
(let ((mode (car args))
|
||||
(rest (cdr args)))
|
||||
(if (equal "--" (car rest))
|
||||
|
|
|
|||
|
|
@ -860,7 +860,7 @@ contains a reference, retrieve the type of the reference."
|
|||
(if complex-type
|
||||
(setq type (soap-xs-parse-complex-type (car complex-type)))
|
||||
;; else
|
||||
(error "Soap-xs-parse-element: missing type or ref"))))))
|
||||
(error "soap-xs-parse-element: Missing type or ref"))))))
|
||||
|
||||
(make-soap-xs-element :name name
|
||||
;; Use the full namespace name for now, we will
|
||||
|
|
@ -2874,7 +2874,7 @@ decode function to perform the actual decoding."
|
|||
(unless wtype
|
||||
;; The node has type info encoded in it, but we don't know how to
|
||||
;; decode it...
|
||||
(error "Soap-decode-array: node has unknown type: %s" type)))
|
||||
(error "soap-decode-array: Node has unknown type: %s" type)))
|
||||
(dolist (e contents)
|
||||
(when (consp e)
|
||||
(push (if wtype
|
||||
|
|
|
|||
|
|
@ -220,7 +220,7 @@ to its sub elements. If ELEMENT is the WSDL document itself, the
|
|||
entire WSDL can be inspected."
|
||||
(let ((inspect (get (soap-type-of element) 'soap-inspect)))
|
||||
(unless inspect
|
||||
(error "Soap-inspect: no inspector for element"))
|
||||
(error "soap-inspect: No inspector for element"))
|
||||
|
||||
(with-current-buffer (get-buffer-create "*soap-inspect*")
|
||||
(setq buffer-read-only t)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue