spacemacs/layers/+chat/jabber/funcs.el
Aleksei Fedotov e421377861 jabber: Fix missing optional argument for the alert jabber-alert-echo function.
Jabber alert function should accept an optional second argument containing a
title of the message. The function mimic the default implementation of
jabber-alert-echo by showing the title if it is present and a message body
otherwise.

This commit fixes an error which is thrown when jabber receives a new notification:
(wrong-number-of-arguments (lambda (msg) (if (minibuffer-prompt) nil (message "%s" msg))) 2)
2018-05-27 23:02:17 +03:00

21 lines
680 B
EmacsLisp

;;; funcs.el --- Jabber layer functions File for Spacemacs
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defun spacemacs/jabber-connect-hook (jc)
(jabber-send-presence "" "Online" 10)
(jabber-whitespace-ping-start)
;; Disable the minibuffer getting jabber messages when active
;; See http://www.emacswiki.org/JabberEl
(define-jabber-alert echo "Show a message in the echo area"
(lambda (msg &optional title)
(unless (minibuffer-prompt)
(message "%s" (or title msg))))))