aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2013-06-19 00:36:20 -0700
committerPaul Eggert2013-06-19 00:36:20 -0700
commitbbc51b1565e360a9dfdae900a47de5db91af6957 (patch)
tree8ce4ed20d0c05b7f9037f9dca8eff1d91072ce55 /src/ChangeLog
parent2285bd27abf63a460d7025b2e5579f67cdd2e6fb (diff)
downloademacs-bbc51b1565e360a9dfdae900a47de5db91af6957.tar.gz
emacs-bbc51b1565e360a9dfdae900a47de5db91af6957.zip
* sound.c: Integer cleanups.
Remove unnecessary forward decls. (struct sound_device): The 'file' member is now a Lisp_Object, not a char *, so that we needn't invoke alloca on a huge size. (Fplay_sound_internal): Adjust to this. (string_default): New function. (vox_open, vox_init, alsa_open, alsa_configure, alsa_init): Use it to adjust to the struct sound_device change. (parse_sound, wav_init, au_init, alsa_init): Use bool for booleans. (be2hs) [0]: Remove.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4d39cc70c23..ecc9ff99e82 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,16 @@
12013-06-19 Paul Eggert <eggert@cs.ucla.edu> 12013-06-19 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * sound.c: Integer cleanups.
4 Remove unnecessary forward decls.
5 (struct sound_device): The 'file' member is now a Lisp_Object, not
6 a char *, so that we needn't invoke alloca on a huge size.
7 (Fplay_sound_internal): Adjust to this.
8 (string_default): New function.
9 (vox_open, vox_init, alsa_open, alsa_configure, alsa_init):
10 Use it to adjust to the struct sound_device change.
11 (parse_sound, wav_init, au_init, alsa_init): Use bool for booleans.
12 (be2hs) [0]: Remove.
13
3 * syntax.c (skip_chars): Don't use uninitialized storage 14 * syntax.c (skip_chars): Don't use uninitialized storage
4 when searching a multibyte buffer for characters that are not in a 15 when searching a multibyte buffer for characters that are not in a
5 unibyte string that contains non-ASCII characters. 16 unibyte string that contains non-ASCII characters.