# HG changeset patch # User jwe # Date 1196791953 0 # Node ID 0ff0883fb121befaa5ca19fe2b659f13c13ca418 # Parent 87b5a3fb5286b02e4cf1c3d932ab68fa27a2f0f8 [project @ 2007-12-04 18:12:32 by jwe] diff -r 87b5a3fb5286 -r 0ff0883fb121 doc/interpreter/contributors.in --- 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 diff -r 87b5a3fb5286 -r 0ff0883fb121 scripts/ChangeLog --- 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 . +2007-12-04 Kai Habel + + * 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 * contour.m, contour3.m, contourc.m, contourf.m, cylinder.m, diff -r 87b5a3fb5286 -r 0ff0883fb121 src/ChangeLog --- 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 . +2007-12-04 Christoph Mayer . + + * 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 * DLD-FUNCTIONS/luinc.cc: Make tests conditional on HAVE_UMFPACK. diff -r 87b5a3fb5286 -r 0ff0883fb121 src/toplev.h --- 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.