diff options
| author | Stefan Monnier | 2002-04-30 01:01:49 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-04-30 01:01:49 +0000 |
| commit | 3d05168ad4832706559d9e1680a0c6872b18ff8b (patch) | |
| tree | 2b6c4446c80026ba7ba63a32ab26f7bb99730435 /src | |
| parent | cc4db0c748a2926df927cbc6e35cf8949fc44a95 (diff) | |
| download | emacs-3d05168ad4832706559d9e1680a0c6872b18ff8b.tar.gz emacs-3d05168ad4832706559d9e1680a0c6872b18ff8b.zip | |
(Fplay_sound_internal): Update call to openp.
Diffstat (limited to 'src')
| -rw-r--r-- | src/sound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound.c b/src/sound.c index aa2e27dbfcc..4504e7e6ee1 100644 --- a/src/sound.c +++ b/src/sound.c | |||
| @@ -421,7 +421,7 @@ Internal use only, use `play-sound' instead. */) | |||
| 421 | { | 421 | { |
| 422 | /* Open the sound file. */ | 422 | /* Open the sound file. */ |
| 423 | s.fd = openp (Fcons (Vdata_directory, Qnil), | 423 | s.fd = openp (Fcons (Vdata_directory, Qnil), |
| 424 | attrs[SOUND_FILE], Qnil, &file, 0); | 424 | attrs[SOUND_FILE], Qnil, &file, Qnil); |
| 425 | if (s.fd < 0) | 425 | if (s.fd < 0) |
| 426 | sound_perror ("Could not open sound file"); | 426 | sound_perror ("Could not open sound file"); |
| 427 | 427 | ||