Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions alert.el
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ This is found in the Growl Extras: http://growl.info/extras.php."
alert-growl-priorities))))
(args
(cl-case system-type
('windows-nt (mapcar
(windows-nt (mapcar
(lambda (lst) (apply #'concat lst))
`(
;; http://www.growlforwindows.com/gfw/help/growlnotify.aspx
Expand All @@ -692,11 +692,11 @@ This is found in the Growl Extras: http://growl.info/extras.php."
(if (and (plist-get info :persistent)
(not (plist-get info :never-persist)))
(cl-case system-type
('windows-nt (nconc args (list "/s:true")))
(windows-nt (nconc args (list "/s:true")))
(t (nconc args (list "--sticky")))))
(let ((message (alert-encode-string (plist-get info :message))))
(cl-case system-type
('windows-nt (nconc args (list message)))
(windows-nt (nconc args (list message)))
(t (nconc args (list "--message" message)))))
(apply #'call-process alert-growl-command nil nil nil args))
(alert-message-notify info)))
Expand Down