aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2009-12-12 19:04:37 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2009-12-12 19:04:37 +0200
commit5754161bdd188444e12a5ce364e26769e72c93fd (patch)
treee70bf118e788f5bef84be791b6bb52a2a2b5ac95
parent1a726b2c2ee0b44c8f1445accad22866d85d1524 (diff)
downloadmailfromd-5754161bdd188444e12a5ce364e26769e72c93fd.tar.gz
mailfromd-5754161bdd188444e12a5ce364e26769e72c93fd.tar.bz2
Version 6.0release-6.0
* NEWS: Update. * configure.ac: Update. * mfd/lex.l (module rule): Add const qualifier.
-rw-r--r--NEWS4
-rw-r--r--configure.ac6
-rw-r--r--doc/mailfromd.texi4
-rw-r--r--mfd/lex.l2
4 files changed, 10 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index fe58010b..ef7222ab 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,11 @@
-Mailfromd NEWS -- history of user-visible changes. 2009-11-19
+Mailfromd NEWS -- history of user-visible changes. 2009-12-12
Copyright (C) 2005, 2006, 2007, 2008, 2009 Sergey Poznyakoff
See the end of file for copying conditions.
Please send Mailfromd bug reports to <bug-mailfromd@gnu.org.ua>
-Version 5.9.91 (Git)
+Version 6.0, 2009-12-12
* Overview
diff --git a/configure.ac b/configure.ac
index 4bbda45b..d0f7266a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,9 +15,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.63)
-m4_define([MF_VERSION_MAJOR], 5)
-m4_define([MF_VERSION_MINOR], 9)
-m4_define([MF_VERSION_PATCH], 91)
+m4_define([MF_VERSION_MAJOR], 6)
+m4_define([MF_VERSION_MINOR], 0)
+dnl m4_define([MF_VERSION_PATCH], 0)
AC_INIT([mailfromd],
MF_VERSION_MAJOR.MF_VERSION_MINOR[]m4_ifdef([MF_VERSION_PATCH],.MF_VERSION_PATCH),
[bug-mailfromd@gnu.org.ua])
diff --git a/doc/mailfromd.texi b/doc/mailfromd.texi
index 6c9fe6f0..dd1dbc95 100644
--- a/doc/mailfromd.texi
+++ b/doc/mailfromd.texi
@@ -500,6 +500,10 @@ release. The new ``run operation mode'' allowed to execute arbitrary
MFL functions from the command line. This release also raised the
Mailutils version requirements to at least 2.0.
+ Version 6.0 introduces a full-fledged modular system, akin
+to that of Python, and quite a few improvements to the language. such
+as explicit type casts, concatenation operator, static variables, etc.
+
@node Acknowledgments
@unnumberedsec Acknowledgments
diff --git a/mfd/lex.l b/mfd/lex.l
index 39afefeb..e4f8d9cb 100644
--- a/mfd/lex.l
+++ b/mfd/lex.l
@@ -583,7 +583,7 @@ public return T_PUBLIC;
module { if (inctx_tos && inctx_flags == 0) {
int c;
int flen;
- char *fname = strrchr(locus.file, '/');
+ const char *fname = strrchr(locus.file, '/');
if (fname)
fname++;

Return to:

Send suggestions and report system problems to the System administrator.