From: Nick Roberts Date: Thu, 23 Nov 2006 05:20:08 +0000 (+0000) Subject: (HAVE_SYS__MBSTATE_T_H): Fix typo. X-Git-Tag: emacs-pretest-22.0.92~560 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=609b291d247464974304f1f98112156c16235cd6;p=emacs.git (HAVE_SYS__MBSTATE_T_H): Fix typo. --- diff --git a/src/ChangeLog b/src/ChangeLog index b312b6a53fd..9e04bee24a7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,6 +1,6 @@ 2006-11-23 William Smith (tiny change) - * strftime.c (mbrlen): Fix typo. + * strftime.c (HAVE_SYS__MBSTATE_T_H): Fix typo. 2006-11-02 Alfred M. Szmidt (tiny change) 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[]; #if DO_MULTIBYTE # if HAVE_MBRLEN # include -# ifdef HAVE_SYS__MBSTATE_H /* previously tested __hpux */ -# include -# endif +# ifdef HAVE_SYS__MBSTATE_T_H /* previously tested __hpux */ +# include +# endif # if !defined (mbsinit) && !defined (HAVE_MBSINIT) # define mbsinit(ps) 1 # endif /* !defined (mbsinit) && !defined (HAVE_MBSINIT) */