Mercurial > hg > octave-lyh
changeset 4035:92776b806c55
[project @ 2002-08-10 08:04:07 by jwe]
author | jwe |
---|---|
date | Sat, 10 Aug 2002 08:04:07 +0000 |
parents | 6c40e6c7a1ae |
children | 1432e11733d1 |
files | ChangeLog mk-opts.pl src/ChangeLog src/DLD-FUNCTIONS/dasrt.cc src/DLD-FUNCTIONS/odessa.cc |
diffstat | 5 files changed, 16 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-08-10 John W. Eaton <jwe@bevo.che.wisc.edu> + + * mk-opts.pl (emit_options_function): Emit newline at EOF. + 2002-08-01 John W. Eaton <jwe@bevo.che.wisc.edu> * Makeconf.in: Use $@-t instead of $@.tmp or $@.t.
--- a/mk-opts.pl +++ b/mk-opts.pl @@ -758,7 +758,7 @@ print_usage (\"$opt_fcn_name\"); return retval; -}"; +}\n"; } sub emit_options_debug
--- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2002-08-10 John W. Eaton <jwe@bevo.che.wisc.edu> + + * DLD-FUNCTIONS/dasrt.cc (DASRT_ABORT1, DASRT_ABORT2): + "##" pastes tokens, not strings. + + * DLD-FUNCTIONS/odessa.cc: Add std:: qualifiers as needed. + 2002-08-09 John W. Eaton <jwe@bevo.che.wisc.edu> * variables.cc (Fisglobal): Rename from Fis_global.
--- a/src/DLD-FUNCTIONS/dasrt.cc +++ b/src/DLD-FUNCTIONS/dasrt.cc @@ -221,7 +221,7 @@ #define DASRT_ABORT1(msg) \ do \ { \ - ::error ("dasrt: " ## msg); \ + ::error ("dasrt: " msg); \ DASRT_ABORT; \ } \ while (0) @@ -229,7 +229,7 @@ #define DASRT_ABORT2(fmt, arg) \ do \ { \ - ::error ("dasrt: " ## fmt, arg); \ + ::error ("dasrt: " fmt, arg); \ DASRT_ABORT; \ } \ while (0)
--- a/src/DLD-FUNCTIONS/odessa.cc +++ b/src/DLD-FUNCTIONS/odessa.cc @@ -300,7 +300,7 @@ if (len > 2) { - string t = f_str_arg(2); + std::string t = f_str_arg(2); if (t.length () > 0) { @@ -314,7 +314,7 @@ if (len > 1) { - string t = f_str_arg(1); + std::string t = f_str_arg(1); if (t.length () > 0) {