Update of /cvsroot/emacs-jabber/emacs-jabber
In directory sc8-pr-cvs17:/tmp/cvs-serv10092
Modified Files:
jabber-chat.el
Log Message:
Revision: ma...@fr...--2005/emacs-jabber--cvs-head--0--patch-400
Creator: Magnus Henoch <ma...@fr...>
Ignore goto-address errors
Index: jabber-chat.el
===================================================================
RCS file: /cvsroot/emacs-jabber/emacs-jabber/jabber-chat.el,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -d -r1.80 -r1.81
--- jabber-chat.el 24 Aug 2007 01:36:06 -0000 1.80
+++ jabber-chat.el 31 Aug 2007 21:45:03 -0000 1.81
@@ -556,7 +556,8 @@
(defun jabber-chat-goto-address (&rest ignore)
"Call `goto-address' on the newly written text."
- (goto-address))
+ (ignore-errors
+ (goto-address)))
;; jabber-compose is autoloaded in jabber.el
(add-to-list 'jabber-jid-chat-menu
|