aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorPavel Janík <[email protected]>2002-04-07 10:11:24 +0000
committerPavel Janík <[email protected]>2002-04-07 10:11:24 +0000
commitcf6f437fc9db506fa68bc49f301b69ce6035d894 (patch)
tree74b704a073e82f5f5e088e0cd6af3c3e007906af /lisp/simple.el
parent324cd947a2c603ea380058750961bc24fce9e175 (diff)
(play-sound): Move to subr.el.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el21
1 files changed, 0 insertions, 21 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index da2e352007..eefac3fce0 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -3355,27 +3355,6 @@ specification for `play-sound'."
(push 'sound sound)
(play-sound sound)))
-(defun play-sound (sound)
- "SOUND is a list of the form `(sound KEYWORD VALUE...)'.
-The following keywords are recognized:
-
- :file FILE - read sound data from FILE. If FILE isn't an
-absolute file name, it is searched in `data-directory'.
-
- :data DATA - read sound data from string DATA.
-
-Exactly one of :file or :data must be present.
-
- :volume VOL - set volume to VOL. VOL must an integer in the
-range 0..100 or a float in the range 0..1.0. If not specified,
-don't change the volume setting of the sound device.
-
- :device DEVICE - play sound on DEVICE. If not specified,
-a system-dependent default device name is used."
- (unless (fboundp 'play-sound-internal)
- (error "This Emacs binary lacks sound support."))
- (play-sound-internal sound))
-
(define-key global-map "\e\e\e" 'keyboard-escape-quit)
(defcustom read-mail-command 'rmail