* lisp/erc/erc-compat.el (erc-compat--xml-escape-string): New macro to
call `xml-escape-string' sans the NO-ERROR argument on Emacs 27.
* lisp/erc/erc-desktop-notifications.el (erc-notifications-notify): Use
compat macro.
(cherry picked from commit
dd1b11d34cd1389fe5ee0dd80784f9cd0d66026d)
client-final-message))
+;;;; Misc 28.1
+
+(defmacro erc-compat--xml-escape-string (string &optional noerror)
+ "Call `xml-escape-string' with NO-ERROR if supported."
+ (if (>= emacs-major-version 28)
+ `(xml-escape-string ,string ,noerror)
+ `(xml-escape-string ,string)))
+
+
;;;; Misc 29.1
(defvar url-irc-function)
(dbus-ignore-errors
(setq erc-notifications-last-notification
(let* ((channel (if privp (erc-get-buffer nick) (current-buffer)))
- (title (format "%s in %s" (xml-escape-string nick t) channel))
- (body (xml-escape-string (erc-controls-strip msg) t)))
+ (title (format "%s in %s"
+ (erc-compat--xml-escape-string nick t)
+ channel))
+ (body (erc-compat--xml-escape-string (erc-controls-strip msg)
+ t)))
(funcall (cond ((featurep 'android)
#'android-notifications-notify)
((featurep 'haiku)