X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/d522fd8ca73e668bfafd0419bc5f71f2751cca24..265141b332edfacd03e10a2de9e070077d0b2e82:/src/sound.c diff --git a/src/sound.c b/src/sound.c index 05c7b06010..42f1fca2e2 100644 --- a/src/sound.c +++ b/src/sound.c @@ -1,6 +1,6 @@ /* sound.c -- sound support. -Copyright (C) 1998-1999, 2001-2015 Free Software Foundation, Inc. +Copyright (C) 1998-1999, 2001-2016 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -46,7 +46,6 @@ along with GNU Emacs. If not, see . */ #include #include "lisp.h" -#include "dispextern.h" #include "atimer.h" #include "syssignal.h" /* END: Common Includes */ @@ -1351,7 +1350,6 @@ Internal use only, use `play-sound' instead. */) { Lisp_Object attrs[SOUND_ATTR_SENTINEL]; ptrdiff_t count = SPECPDL_INDEX (); - struct gcpro gcpro1, gcpro2; #ifdef WINDOWSNT unsigned long ui_volume_tmp = UINT_MAX; @@ -1363,7 +1361,6 @@ Internal use only, use `play-sound' instead. */) error ("Invalid sound specification"); Lisp_Object file = Qnil; - GCPRO2 (sound, file); #ifndef WINDOWSNT current_sound_device = xzalloc (sizeof *current_sound_device); @@ -1452,7 +1449,6 @@ Internal use only, use `play-sound' instead. */) #endif /* WINDOWSNT */ - UNGCPRO; return unbind_to (count, Qnil); }