changeset 7250:0ff0883fb121

[project @ 2007-12-04 18:12:32 by jwe]
author jwe
date Tue, 04 Dec 2007 18:12:33 +0000
parents 87b5a3fb5286
children ace1030cbe36
files doc/interpreter/contributors.in scripts/ChangeLog src/ChangeLog src/toplev.h
diffstat 4 files changed, 17 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/contributors.in	Tue Dec 04 18:04:23 2007 +0000
+++ b/doc/interpreter/contributors.in	Tue Dec 04 18:12:33 2007 +0000
@@ -115,6 +115,7 @@
 Makoto Matsumoto
 Laurent Mazet
 G. D. McBain
+Christoph Mayer
 Stefan Monnier
 Antoine Moreau
 Kai P. Mueller
--- a/scripts/ChangeLog	Tue Dec 04 18:04:23 2007 +0000
+++ b/scripts/ChangeLog	Tue Dec 04 18:12:33 2007 +0000
@@ -3,6 +3,11 @@
 	* linear-algebra/krylov.m: Doc fixes.
 	From Marco Caliari <caliari@sci.univr.it>.
 
+2007-12-04  Kai Habel  <kai.habel@gmx.de>
+
+	* plot/shading.m: Use __plt_get_axis_arg__ for optional axes argument.
+	Add "## PKG_ADD: mark_as_command axis" line.
+
 2007-12-03  John W. Eaton  <jwe@octave.org>
 
 	* contour.m, contour3.m, contourc.m, contourf.m, cylinder.m,
--- a/src/ChangeLog	Tue Dec 04 18:04:23 2007 +0000
+++ b/src/ChangeLog	Tue Dec 04 18:12:33 2007 +0000
@@ -3,6 +3,12 @@
 	* load-save.cc (Fsave, Fload): Doc fixes.
 	From Marco Caliari <caliari@sci.univr.it>.
 
+2007-12-04  Christoph Mayer  <Christoph.Mayer@dlr.de>.
+
+	* toplev.h (clean_up_and_exit, recover_from_exception,
+	do_octave_atexit, global_command, curr_parent_function):
+	Tag with OCTINTERP_API. 
+
 2007-12-03  David Bateman  <dbateman@free.fr>
 
 	* DLD-FUNCTIONS/luinc.cc: Make tests conditional on HAVE_UMFPACK.
--- a/src/toplev.h	Tue Dec 04 18:04:23 2007 +0000
+++ b/src/toplev.h	Tue Dec 04 18:12:33 2007 +0000
@@ -36,21 +36,21 @@
 class tree_statement_list;
 class charMatrix;
 
-extern void
+extern OCTINTERP_API void
 clean_up_and_exit (int) GCC_ATTR_NORETURN;
 
-extern void recover_from_exception (void);
+extern OCTINTERP_API void recover_from_exception (void);
 
 extern int main_loop (void);
 
-extern void
+extern OCTINTERP_API void
 do_octave_atexit (void);
 
 // Current command to execute.
-extern tree_statement_list *global_command;
+extern OCTINTERP_API tree_statement_list *global_command;
 
 // Pointer to parent function that is currently being evaluated.
-extern octave_function *curr_parent_function;
+extern OCTINTERP_API octave_function *curr_parent_function;
 
 // TRUE means we are ready to interpret commands, but not everything
 // is ready for interactive use.