summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2016-11-21 16:17:20 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2016-11-21 16:17:21 +0900
commite8df6a2524e98ce64b54852e65a79d6bac9bf3d2 (patch)
treed3a07a8334891bff54c19f65d9a67b1f59bbe87b
parent0712c3599bfebc49eda8ab8c49e5536d968d8da7 (diff)
downloadre2c-e8df6a2524e98ce64b54852e65a79d6bac9bf3d2.tar.gz
re2c-e8df6a2524e98ce64b54852e65a79d6bac9bf3d2.tar.bz2
re2c-e8df6a2524e98ce64b54852e65a79d6bac9bf3d2.zip
Imported Upstream version 0.14.1
Change-Id: Ie7c8853990a5149531d10b9aa9a52742b8f58fa8 Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
-rw-r--r--CHANGELOG4
-rw-r--r--bootstrap/re2c.16
-rw-r--r--bootstrap/scanner.cc2
-rw-r--r--config_w32.h6
-rw-r--r--configure.ac2
-rwxr-xr-xhtdocs/index.html4
-rw-r--r--main.cc2
7 files changed, 17 insertions, 9 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 973cd212..9494115b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+Version 0.14.1 (2015-02-27)
+-----------------------------
+- fixed #55 re2c-0.14: re2c -V outputs null byte
+
Version 0.14 (2015-02-23)
-----------------------------
- Added generic input API 21 (#21 Support to configure how re2c code interfaced with the symbol buffer?)
diff --git a/bootstrap/re2c.1 b/bootstrap/re2c.1
index d237ffc1..e0b802e5 100644
--- a/bootstrap/re2c.1
+++ b/bootstrap/re2c.1
@@ -2,12 +2,12 @@
.\" Title: re2c
.\" Author: [see the "AUTHORS" section]
.\" Generator: DocBook XSL Stylesheets v1.78.0 <http://docbook.sf.net/>
-.\" Date: 02/23/2015
+.\" Date: 02/27/2015
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
-.TH "RE2C" "1" "02/23/2015" "\ \&" "\ \&"
+.TH "RE2C" "1" "02/27/2015" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -1514,4 +1514,4 @@ skvadrik@gmail\&.com
.RE
.SH "VERSION INFORMATION"
.sp
-This manpage describes \fBre2c\fR, version 0\&.14, package date 23 Feb 2015\&.
+This manpage describes \fBre2c\fR, version 0\&.14\&.1, package date 27 Feb 2015\&.
diff --git a/bootstrap/scanner.cc b/bootstrap/scanner.cc
index 85b9278d..8b97545a 100644
--- a/bootstrap/scanner.cc
+++ b/bootstrap/scanner.cc
@@ -1,4 +1,4 @@
-/* Generated by re2c 0.13.7.dev on Thu Apr 10 00:33:47 2014 */
+/* Generated by re2c 0.14.1.dev on Fri Feb 27 23:44:24 2015*/
/* $Id$ */
#include <stdlib.h>
#include <string.h>
diff --git a/config_w32.h b/config_w32.h
index 6dd75921..083a1df2 100644
--- a/config_w32.h
+++ b/config_w32.h
@@ -59,13 +59,13 @@
#define PACKAGE_NAME "re2c"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "re2c 0.14"
+#define PACKAGE_STRING "re2c 0.14.1"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "re2c"
/* Define to the version of this package. */
-#define PACKAGE_VERSION "0.14"
+#define PACKAGE_VERSION "0.14.1"
/* The size of a `char', as computed by sizeof. */
#define SIZEOF_CHAR 1
@@ -83,7 +83,7 @@
#define STDC_HEADERS 1
/* Version number of package */
-#define VERSION "0.14"
+#define VERSION "0.14.1"
/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */
diff --git a/configure.ac b/configure.ac
index c8f7aa00..01e9e20c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.57])
-AC_INIT(re2c, 0.14, re2c-general@lists.sourceforge.net)
+AC_INIT(re2c, 0.14.1, re2c-general@lists.sourceforge.net)
AM_INIT_AUTOMAKE(re2c, $PACKAGE_VERSION)
AC_CONFIG_SRCDIR(actions.cc)
AM_CONFIG_HEADER(config.h)
diff --git a/htdocs/index.html b/htdocs/index.html
index 49418c37..89cff569 100755
--- a/htdocs/index.html
+++ b/htdocs/index.html
@@ -68,6 +68,10 @@
</ul>
<hr />
<h1>Changelog</h1>
+ <h2>2015-02-27: 0.14.1</h2>
+ <ul>
+ <li>fixed #55 re2c-0.14: re2c -V outputs null byte</li>
+ </ul>
<h2>2015-02-23: 0.14</h2>
<ul>
<li>Added generic input API 21 (#21 Support to configure how re2c code interfaced with the symbol buffer?)</li>
diff --git a/main.cc b/main.cc
index cb07d15e..fc6f9109 100644
--- a/main.cc
+++ b/main.cc
@@ -330,7 +330,7 @@ int main(int argc, char *argv[])
{
vernum.insert(4, "0");
}
- vernum.resize(6);
+ vernum.resize(6, '0');
cout << vernum << endl;
return 2;
}