aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-04-09 12:14:12 -0700
committerPaul Eggert2011-04-09 12:14:12 -0700
commitdae0cd48d84709e8f3662b7bbf14d22cc46038de (patch)
treee2c533e5050fd79766b825ebb9b08d2a11b290df /src/ChangeLog
parent76032d70ca341d94996b968a3e1b522b3070196c (diff)
downloademacs-dae0cd48d84709e8f3662b7bbf14d22cc46038de.tar.gz
emacs-dae0cd48d84709e8f3662b7bbf14d22cc46038de.zip
* ftfont.c: Distingish more carefully between FcChar8 and char.
The previous code passed unsigned char * to a functions like strlen and xstrcasecmp that expect char *, which does not conform to the C standard. (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for arguments to FcPatternGetString, and explicitly cast FcChar8 * to char * when the C standard requires it.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 27dbdd7cb11..c8811f7708b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,13 @@
12011-04-09 Paul Eggert <eggert@cs.ucla.edu> 12011-04-09 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * ftfont.c: Distingish more carefully between FcChar8 and char.
4 The previous code passed unsigned char * to a functions like
5 strlen and xstrcasecmp that expect char *, which does not
6 conform to the C standard.
7 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
8 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
9 char * when the C standard requires it.
10
3 * keyboard.c (read_char): Remove unused var. 11 * keyboard.c (read_char): Remove unused var.
4 12
5 * eval.c: Port to Windows vsnprintf (Bug#8435). 13 * eval.c: Port to Windows vsnprintf (Bug#8435).