aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNick Roberts2006-11-23 05:20:08 +0000
committerNick Roberts2006-11-23 05:20:08 +0000
commit609b291d247464974304f1f98112156c16235cd6 (patch)
tree824d0f056247132d2cee9d15a62e23ba53ab4518 /src
parent09566666c387348d9805d3e4843bfb2dc049c1e7 (diff)
downloademacs-609b291d247464974304f1f98112156c16235cd6.tar.gz
emacs-609b291d247464974304f1f98112156c16235cd6.zip
(HAVE_SYS__MBSTATE_T_H): Fix typo.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/strftime.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b312b6a53fd..9e04bee24a7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,6 @@
12006-11-23 William Smith <William.Smith@global360.com> (tiny change) 12006-11-23 William Smith <William.Smith@global360.com> (tiny change)
2 2
3 * strftime.c (mbrlen): Fix typo. 3 * strftime.c (HAVE_SYS__MBSTATE_T_H): Fix typo.
4 4
52006-11-02 Alfred M. Szmidt <ams@gnu.org> (tiny change) 52006-11-02 Alfred M. Szmidt <ams@gnu.org> (tiny change)
6 6
diff --git a/src/strftime.c b/src/strftime.c
index 123763d8845..88800c0d408 100644
--- a/src/strftime.c
+++ b/src/strftime.c
@@ -69,9 +69,9 @@ extern char *tzname[];
69#if DO_MULTIBYTE 69#if DO_MULTIBYTE
70# if HAVE_MBRLEN 70# if HAVE_MBRLEN
71# include <wchar.h> 71# include <wchar.h>
72# ifdef HAVE_SYS__MBSTATE_H /* previously tested __hpux */ 72# ifdef HAVE_SYS__MBSTATE_T_H /* previously tested __hpux */
73# include <sys/_mbstate_t.h> 73# include <sys/_mbstate_t.h>
74# endif 74# endif
75# if !defined (mbsinit) && !defined (HAVE_MBSINIT) 75# if !defined (mbsinit) && !defined (HAVE_MBSINIT)
76# define mbsinit(ps) 1 76# define mbsinit(ps) 1
77# endif /* !defined (mbsinit) && !defined (HAVE_MBSINIT) */ 77# endif /* !defined (mbsinit) && !defined (HAVE_MBSINIT) */