diff options
author | Daiki Ueno <ueno@gnu.org> | 2014-05-03 04:29:37 +0900 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2014-05-03 04:30:02 +0900 |
commit | 1476201c0d21a547cc0729b6f3511090eb322035 (patch) | |
tree | 36e74c90bf6d80f4579f10c3c58a35d23cf72dd3 | |
parent | 1dd5115d02501d2c31e6e57e02d627a813feaf14 (diff) | |
download | external_gettext-1476201c0d21a547cc0729b6f3511090eb322035.zip external_gettext-1476201c0d21a547cc0729b6f3511090eb322035.tar.gz external_gettext-1476201c0d21a547cc0729b6f3511090eb322035.tar.bz2 |
Fix typo in commit f597467a
-rw-r--r-- | gettext-tools/src/xgettext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gettext-tools/src/xgettext.c b/gettext-tools/src/xgettext.c index c1697c2..ca957fd 100644 --- a/gettext-tools/src/xgettext.c +++ b/gettext-tools/src/xgettext.c @@ -3156,7 +3156,7 @@ mixed_string_buffer_flush_curr_buffer (struct mixed_string_buffer *bp, char *curr; size_t count; - mixed_string_buffer_append_to_utf8_buffer (bp, '\0'); + mixed_string_buffer_append_to_curr_buffer (bp, '\0'); /* Convert from the source encoding to UTF-8. */ curr = from_current_source_encoding (bp->curr_buffer, bp->lcontext, @@ -3187,7 +3187,7 @@ mixed_string_buffer_append_char (struct mixed_string_buffer *bp, int c) if (c == '\n') mixed_string_buffer_flush_curr_buffer (bp, bp->line_number - 1); - mixed_string_buffer_append_to_utf8_buffer (bp, (unsigned char) c); + mixed_string_buffer_append_to_curr_buffer (bp, (unsigned char) c); } void |