From: Magnus H. <leg...@us...> - 2014-08-12 21:18:42
|
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 090c983aa3b0e7a72f059455cfdeac9d799ea5fc (commit) from 6113c371232d68a3fa56e5903feafdedf34f8d85 (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 090c983aa3b0e7a72f059455cfdeac9d799ea5fc Author: Magnus Henoch <mag...@gm...> Date: Tue Aug 12 22:17:53 2014 +0100 Require goto-addr before calling goto-address-fontify goto-address is autoloaded, but goto-address-fontify is not. diff --git a/jabber-chat.el b/jabber-chat.el index c12e22c..f27af4b 100644 --- a/jabber-chat.el +++ b/jabber-chat.el @@ -616,6 +616,8 @@ If DONT-PRINT-NICK-P is true, don't include nickname." "Call `goto-address' on the newly written text." (when (eq mode :insert) (ignore-errors + ;; `goto-address' is autoloaded, but `goto-address-fontify' is not. + (require 'goto-addr) (let ((end (point)) (limit (max (- (point) 1000) (1+ (point-min))))) ;; We only need to fontify the text written since the last ----------------------------------------------------------------------- Summary of changes: jabber-chat.el | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) hooks/post-receive -- emacs-jabber |