diff options
author | Sean Allred <code@seanallred.com> | 2014-12-02 00:06:36 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-12-02 00:06:36 -0500 |
commit | 07ead3d320ebe2d14c89f47a715571f9b124187d (patch) | |
tree | 852f4dc8b99cfeda22237b59e183628ac15b37eb /sx-request.el | |
parent | fd0eb04a72eae2d85a2a023e44cf641e450fa2f1 (diff) |
Hexify value in key-value pairs
Fixes #130
Diffstat (limited to 'sx-request.el')
-rw-r--r-- | sx-request.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-request.el b/sx-request.el index 7ed8792..c8c6eb6 100644 --- a/sx-request.el +++ b/sx-request.el @@ -194,7 +194,7 @@ false, use the symbol `false'. Each element is processed with (concat (sx--thing-as-string (car pair)) "=" - (sx--thing-as-string (cdr pair) kv-sep))) + (sx--thing-as-string (cdr pair) kv-sep t))) (delq nil (mapcar (lambda (pair) (when (cdr pair) pair)) |