From ed7c63321e01f768fe34a567a2a378a56b4a9a24 Mon Sep 17 00:00:00 2001 From: Steve Youngs Date: Sun, 18 Aug 2013 13:47:09 +1000 Subject: [PATCH] Fix a Wrong type argument error. * emchat-buddy.el (balloon-help-display-help): Fix advice, use #'point-at-eol instead of #'eolp as the latter does not return a value. Signed-off-by: Steve Youngs --- emchat-buddy.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emchat-buddy.el b/emchat-buddy.el index 9afd222..9246dc3 100644 --- a/emchat-buddy.el +++ b/emchat-buddy.el @@ -267,7 +267,7 @@ See `emchat-buddy-view' and `emchat-active-aliases'." (let ((alias (progn (set-buffer balloon-help-buffer) (goto-char (point-min)) - (when (re-search-forward "\\(^.*\\) (" (eolp) t) + (when (re-search-forward "\\(^.*\\) (" (point-at-eol) t) (substring (match-string 1) 1))))) (when alias (emchat-buddy-show-xface-in-balloon alias))))) -- 2.25.1