From: Magnus H. <leg...@us...> - 2013-07-27 18:11:07
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "emacs-jabber". The branch, master has been updated via c38945c00e471059c8cfe9dade577df1f4e58e35 (commit) from c6c3af7f967901d6a8fb4ad70671bb5c5365b4bd (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c38945c00e471059c8cfe9dade577df1f4e58e35 Author: Magnus Henoch <mag...@gm...> Date: Sat Jul 27 19:10:15 2013 +0100 * jabber-keepalive.el (jabber-whitespace-ping-do): Ignore errors. Sometimes this fails because the connection is closed. Not sure exactly why this happens, but the sentinel function should discover the lost connection anyway, and having an error signalled in a timer function doesn't help anyone. diff --git a/jabber-keepalive.el b/jabber-keepalive.el index 2ce41d6..33297a6 100644 --- a/jabber-keepalive.el +++ b/jabber-keepalive.el @@ -169,7 +169,7 @@ accounts." (defun jabber-whitespace-ping-do () (dolist (c jabber-connections) - (jabber-send-string c " "))) + (ignore-errors (jabber-send-string c " ")))) (provide 'jabber-keepalive) ----------------------------------------------------------------------- Summary of changes: jabber-keepalive.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- emacs-jabber |