Staram się, aby Aquamacs Emacs odtwarzał dźwięk.
Mam to:
(add-hook 'org-after-todo-state-change-hook 'my-org-after-todo)
(defun my-org-after-todo ()
(play-sound-file "~/Library/Sounds/InkSoundStroke3.aif"))
Ale dostaję ten błąd:
This Emacs binary lacks sound support
Jakieś pomysły?
require
nie powiodło się(file-error "Cannot open load file" "No such file or directory" "play-sound")
. Ale znalazłem obejście:(shell-command "afplay whatever.wav")
.