diff options
| author | Paul Eggert | 2011-04-13 19:23:09 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-13 19:23:09 -0700 |
| commit | b7c513d0049fc726e8c2bdba84f601eac0801512 (patch) | |
| tree | 2a29a0989c5e5516358276265f769649cb1afe0d | |
| parent | 989b29ad2242850e8256c7509c9551742ddeab45 (diff) | |
| download | emacs-b7c513d0049fc726e8c2bdba84f601eac0801512.tar.gz emacs-b7c513d0049fc726e8c2bdba84f601eac0801512.zip | |
* sound.c (current_sound_device, current_sound): Now static.
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/sound.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9e37c661c46..3762f04b4a4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2011-04-14 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-04-14 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * sound.c (current_sound_device, current_sound): Now static. | ||
| 4 | |||
| 3 | * search.c (searchbufs, searchbuf_head): Now static. | 5 | * search.c (searchbufs, searchbuf_head): Now static. |
| 4 | 6 | ||
| 5 | * scroll.c (scroll_cost): Remove; unused. | 7 | * scroll.c (scroll_cost): Remove; unused. |
diff --git a/src/sound.c b/src/sound.c index 4478a067c09..e121b5e37f3 100644 --- a/src/sound.c +++ b/src/sound.c | |||
| @@ -281,8 +281,8 @@ struct sound | |||
| 281 | /* These are set during `play-sound-internal' so that sound_cleanup has | 281 | /* These are set during `play-sound-internal' so that sound_cleanup has |
| 282 | access to them. */ | 282 | access to them. */ |
| 283 | 283 | ||
| 284 | struct sound_device *current_sound_device; | 284 | static struct sound_device *current_sound_device; |
| 285 | struct sound *current_sound; | 285 | static struct sound *current_sound; |
| 286 | 286 | ||
| 287 | /* Function prototypes. */ | 287 | /* Function prototypes. */ |
| 288 | 288 | ||