Function: eudc-bob-play-sound-at-point

eudc-bob-play-sound-at-point is an interactive and byte-compiled function defined in eudc-bob.el.gz.

Signature

(eudc-bob-play-sound-at-point)

Documentation

Play the sound data contained in the button at point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/eudc-bob.el.gz
(defun eudc-bob-play-sound-at-point ()
  "Play the sound data contained in the button at point."
  (interactive)
  (let (sound)
    (if (null (setq sound (eudc-bob-get-overlay-prop 'object-data)))
	(error "No sound data available here")
      (unless (fboundp 'play-sound-internal)
	(error "Playing sounds not supported on this system"))
      (play-sound (list 'sound :data sound)))))