Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2000-11-09  Jakub Jelinek  <jakub@redhat.com>

	* locale/C-time.c (_nl_C_LC_TIME): Fix value for _NL_TIME_WEEK_1STWEEK.

2000-11-09  Jakub Jelinek  <jakub@redhat.com>

	* locale/programs/ld-paper.c (paper_output): Fix offset into width
	field.
  • Loading branch information
Ulrich Drepper committed Nov 9, 2000
1 parent bb39c4e commit a3212d8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2000-11-09 Jakub Jelinek <jakub@redhat.com>

* locale/C-time.c (_nl_C_LC_TIME): Fix value for _NL_TIME_WEEK_1STWEEK.

2000-11-09 Jakub Jelinek <jakub@redhat.com>

* locale/programs/ld-paper.c (paper_output): Fix offset into width
field.

2000-10-27 Bruno Haible <haible@clisp.cons.org>

* locale/programs/charmap.c (charmap_read): Verify ASCII
Expand Down
2 changes: 1 addition & 1 deletion locale/C-time.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const struct locale_data _nl_C_LC_TIME =
{ wstr: (const uint32_t *) L"" },
{ string: "\7" },
{ word: 19971130 },
{ word: 19971130 },
{ string: "\4" },
{ string: "\7" },
{ string: "\1" },
{ string: "\1" },
Expand Down
2 changes: 1 addition & 1 deletion locale/programs/ld-paper.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ paper_output (struct localedef_t *locale, struct charmap_t *charmap,
iov[cnt].iov_len = 4;
++cnt;

idx[cnt - 2] = iov[0].iov_len + iov[1].iov_len;
idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
iov[cnt].iov_base = &paper->width;
iov[cnt].iov_len = 4;
++cnt;
Expand Down

0 comments on commit a3212d8

Please sign in to comment.