aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/prog.c6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 54ca12b7..0b98c98e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,12 @@
12008-03-10 Sergey Poznyakoff <gray@gnu.org.ua> 12008-03-10 Sergey Poznyakoff <gray@gnu.org.ua>
2 2
3 -= Release 4.4 =- 3 -= Release 4.4 =-
4 4
52008-03-10 Sergey Poznyakoff <gray@gnu.org.ua> 52008-03-10 Sergey Poznyakoff <gray@gnu.org.ua>
6 6
7 * src/prog.c (env_throw, env_throw_0, env_throw_bi): Fix
8 signatures.
9
7 * configure.ac, NEWS: Version 4.4 10 * configure.ac, NEWS: Version 4.4
8 11
9 * src/mailfromd.h (enum mf_status_code): Add a comma and a count 12 * src/mailfromd.h (enum mf_status_code): Add a comma and a count
diff --git a/src/prog.c b/src/prog.c
index f39fb1b7..26621102 100644
--- a/src/prog.c
+++ b/src/prog.c
@@ -1869,7 +1869,7 @@ env_vsprintf(eval_environ_t env, const char *biname,
1869} 1869}
1870 1870
1871void 1871void
1872env_throw_0(eval_environ_t env, mf_status status, size_t off) 1872env_throw_0(eval_environ_t env, mf_exception status, size_t off)
1873{ 1873{
1874 prog_counter_t pc = env->catch[status]; 1874 prog_counter_t pc = env->catch[status];
1875 if (pc) { 1875 if (pc) {
@@ -1891,7 +1891,7 @@ env_throw_0(eval_environ_t env, mf_status status, size_t off)
1891} 1891}
1892 1892
1893void 1893void
1894env_throw(eval_environ_t env, mf_status status, const char *fmt, ...) 1894env_throw(eval_environ_t env, mf_exception status, const char *fmt, ...)
1895{ 1895{
1896 va_list ap; 1896 va_list ap;
1897 size_t off; 1897 size_t off;
@@ -1902,7 +1902,7 @@ env_throw(eval_environ_t env, mf_status status, const char *fmt, ...)
1902} 1902}
1903 1903
1904void 1904void
1905env_throw_bi(eval_environ_t env, mf_status status, const char *biname, 1905env_throw_bi(eval_environ_t env, mf_exception status, const char *biname,
1906 const char *fmt, ...) 1906 const char *fmt, ...)
1907{ 1907{
1908 va_list ap; 1908 va_list ap;

Return to:

Send suggestions and report system problems to the System administrator.