diff options
| author | Nick Roberts | 2006-11-23 05:20:08 +0000 |
|---|---|---|
| committer | Nick Roberts | 2006-11-23 05:20:08 +0000 |
| commit | 609b291d247464974304f1f98112156c16235cd6 (patch) | |
| tree | 824d0f056247132d2cee9d15a62e23ba53ab4518 /src | |
| parent | 09566666c387348d9805d3e4843bfb2dc049c1e7 (diff) | |
| download | emacs-609b291d247464974304f1f98112156c16235cd6.tar.gz emacs-609b291d247464974304f1f98112156c16235cd6.zip | |
(HAVE_SYS__MBSTATE_T_H): Fix typo.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/strftime.c | 6 |
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 @@ | |||
| 1 | 2006-11-23 William Smith <William.Smith@global360.com> (tiny change) | 1 | 2006-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 | ||
| 5 | 2006-11-02 Alfred M. Szmidt <ams@gnu.org> (tiny change) | 5 | 2006-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) */ |