summaryrefslogtreecommitdiff
path: root/emacs/xmpp.el
diff options
context:
space:
mode:
authordefanor <defanor@uberspace.net>2023-09-08 17:23:54 +0300
committerdefanor <defanor@uberspace.net>2023-09-08 17:23:54 +0300
commitaaae19eb8462c784daab0cf9afddc934fdbd1b75 (patch)
tree62e605e8e3c016074b9a62f799d1d638c737405d /emacs/xmpp.el
parent55db67a6abebeda001feccbbf2b7615d19cb93e5 (diff)
Support libexpat as an alternative XML parser
Diffstat (limited to 'emacs/xmpp.el')
-rw-r--r--emacs/xmpp.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/emacs/xmpp.el b/emacs/xmpp.el
index feb201f..1dbd34b 100644
--- a/emacs/xmpp.el
+++ b/emacs/xmpp.el
@@ -186,8 +186,7 @@ its printing--which doesn't handle namespaces--can be used too."
(with-temp-buffer
(xml-print xml)
(insert "\n")
- (process-send-region cur-proc (point-min) (point-max))
- (process-send-eof cur-proc))))
+ (process-send-region cur-proc (point-min) (point-max)))))
(defun xmpp-with-message-body (proc message-xml func)
(let* ((message-contents (xml-node-children message-xml))