diff options
| author | Juanma Barranquero | 2019-10-17 02:08:43 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2019-10-17 02:08:43 +0200 |
| commit | 2bb0703e24ec1b02bb2ab4be67719e2e050cc4d3 (patch) | |
| tree | 77a076491e0635e2728393ac79c87f925e4a935e /lisp/net | |
| parent | d502f0c4b5bf0d6dbf0a125b01db21fa3b6292df (diff) | |
| download | emacs-2bb0703e24ec1b02bb2ab4be67719e2e050cc4d3.tar.gz emacs-2bb0703e24ec1b02bb2ab4be67719e2e050cc4d3.zip | |
lisp/*.el: Force non-nil result to t, to match docstring
* lisp/emacs-lock.el (emacs-lock-live-process-p):
* lisp/shadowfile.el (shadow-file-match):
* lisp/emacs-lisp/edebug.el (edebug-basic-spec):
* lisp/mail/rmail.el (rmail-expunge-confirmed):
* lisp/net/soap-client.el (soap-should-encode-value-for-xs-element):
* lisp/progmodes/idlwave.el (idlwave-quoted):
* lisp/progmodes/idlw-shell.el (idlwave-shell-filename-string):
* lisp/textmodes/refbib.el (r2b-isa-proceedings):
* lisp/textmodes/texnfo-upd.el (texinfo-find-lower-level-node):
Normalize boolean result.
Diffstat (limited to 'lisp/net')
| -rw-r--r-- | lisp/net/soap-client.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/soap-client.el b/lisp/net/soap-client.el index 956e2cf4c4d..535e46cf6d8 100644 --- a/lisp/net/soap-client.el +++ b/lisp/net/soap-client.el | |||
| @@ -844,7 +844,7 @@ This is a specialization of `soap-encode-attributes' for | |||
| 844 | "Return t if VALUE should be encoded for ELEMENT, nil otherwise." | 844 | "Return t if VALUE should be encoded for ELEMENT, nil otherwise." |
| 845 | (cond | 845 | (cond |
| 846 | ;; if value is not nil, attempt to encode it | 846 | ;; if value is not nil, attempt to encode it |
| 847 | (value) | 847 | (value t) |
| 848 | 848 | ||
| 849 | ;; value is nil, but the element's type is a boolean, so nil in this case | 849 | ;; value is nil, but the element's type is a boolean, so nil in this case |
| 850 | ;; means "false". We need to encode it. | 850 | ;; means "false". We need to encode it. |