summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkira TAGOH <akira@tagoh.org>2006-12-19 17:01:10 +0000
committerAkira TAGOH <akira@tagoh.org>2006-12-19 17:01:10 +0000
commitc86411cbc1e7a87961aa0086671ffb3b075a31fb (patch)
tree8b6404bc08a7cfe960d80c074b1168270b67707d
parent8df0660e62a86e4a5f98242d4c0fcd8a429f2d59 (diff)
2006-12-20 Akira TAGOH <at@gclab.org>
* hieroglyph/hgfile.c (hg_file_object_ungetc): fix a duplicate of pushing back.
-rw-r--r--ChangeLog5
-rw-r--r--hieroglyph/hgfile.c1
-rw-r--r--hieroglyph/version.h.in2
3 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6b7188c..f561db9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-12-20 Akira TAGOH <at@gclab.org>
+
+ * hieroglyph/hgfile.c (hg_file_object_ungetc): fix a duplicate of
+ pushing back.
+
2006-12-19 Akira TAGOH <at@gclab.org>
* hieroglyph/hgstring.c (hg_string_erase): new function.
diff --git a/hieroglyph/hgfile.c b/hieroglyph/hgfile.c
index 9bc00f8..0cd7d76 100644
--- a/hieroglyph/hgfile.c
+++ b/hieroglyph/hgfile.c
@@ -731,6 +731,7 @@ hg_file_object_ungetc(HgFileObject *object,
if (retval > 0)
break;
hg_log_debug(DEBUG_FILE, "Failed to push back a character to a file stream.");
+ break;
case HG_FILE_TYPE_STDIN:
object->is_eof = FALSE;
object->ungetc = c;
diff --git a/hieroglyph/version.h.in b/hieroglyph/version.h.in
index 5185b87..ada5100 100644
--- a/hieroglyph/version.h.in
+++ b/hieroglyph/version.h.in
@@ -29,7 +29,7 @@
G_BEGIN_DECLS
#define HIEROGLYPH_VERSION "@VERSION@"
-#define HIEROGLYPH_UUID "c04d359e-666f-4cfe-b152-321fd7a288df"
+#define HIEROGLYPH_UUID "bd0c9fb4-4ed8-4bb9-bce5-c4f0198ece76"
const char *__hg_rcsid G_GNUC_UNUSED = "$Rev$";