diff -cpr graceplot-1.0.8/DESCRIPTION graceplot-1.0.9/DESCRIPTION *** graceplot-1.0.8/DESCRIPTION 2009-06-07 12:44:29.000000000 +0200 --- graceplot-1.0.9/DESCRIPTION 2009-07-12 23:25:08.000000000 +0200 *************** *** 1,12 **** Name: Graceplot ! Version: 1.0.8 Date: 2009-05-06 Author: Teemu Ikonen Maintainer: Teemu Ikonen Title: Graceplot Description: Graceplot bindings for octave. Categories: graphics ! Depends: octave (>= 2.9.7), io (>= 1.0.0), general BuildRequires: grace-devel License: GPL version 2 or later Url: http://octave.sf.net --- 1,12 ---- Name: Graceplot ! Version: 1.0.9 Date: 2009-05-06 Author: Teemu Ikonen Maintainer: Teemu Ikonen Title: Graceplot Description: Graceplot bindings for octave. Categories: graphics ! Depends: octave (>= 3.2.0), io (>= 1.0.0), general BuildRequires: grace-devel License: GPL version 2 or later Url: http://octave.sf.net diff -cpr graceplot-1.0.8/INDEX graceplot-1.0.9/INDEX *** graceplot-1.0.8/INDEX 2009-06-07 12:44:29.000000000 +0200 --- graceplot-1.0.9/INDEX 2009-07-12 23:25:24.000000000 +0200 *************** support *** 8,18 **** __grcmd__ __grcla__ __grclf__ - __grexit__ __grfigure__ __grgetstat__ __grhold__ - __grinit__ __grishold__ __grnewset__ __grsetgraph__ --- 8,16 ---- diff -cpr graceplot-1.0.8/PKG_ADD graceplot-1.0.9/PKG_ADD *** graceplot-1.0.8/PKG_ADD 2009-06-07 12:44:29.000000000 +0200 --- graceplot-1.0.9/PKG_ADD 2009-07-10 17:13:51.000000000 +0200 *************** *** 1,10 **** autoload ("__grcla__", fullfile (fileparts (mfilename ("fullpath")), "__grcmd__.oct")); autoload ("__grclf__", fullfile (fileparts (mfilename ("fullpath")), "__grcmd__.oct")); - autoload ("__grexit__", fullfile (fileparts (mfilename ("fullpath")), "__grcmd__.oct")); autoload ("__grfigure__", fullfile (fileparts (mfilename ("fullpath")), "__grcmd__.oct")); autoload ("__grgetstat__", fullfile (fileparts (mfilename ("fullpath")), "__grcmd__.oct")); autoload ("__grhold__", fullfile (fileparts (mfilename ("fullpath")), "__grcmd__.oct")); - autoload ("__grinit__", fullfile (fileparts (mfilename ("fullpath")), "__grcmd__.oct")); autoload ("__grishold__", fullfile (fileparts (mfilename ("fullpath")), "__grcmd__.oct")); autoload ("__grnewset__", fullfile (fileparts (mfilename ("fullpath")), "__grcmd__.oct")); autoload ("__grsetgraph__", fullfile (fileparts (mfilename ("fullpath")), "__grcmd__.oct")); --- 1,8 ---- diff -cpr graceplot-1.0.8/src/__grcmd__.cc graceplot-1.0.9/src/__grcmd__.cc *** graceplot-1.0.8/src/__grcmd__.cc 2009-06-07 12:44:24.000000000 +0200 --- graceplot-1.0.9/src/__grcmd__.cc 2009-07-10 16:28:59.000000000 +0200 *************** Renames the built-in functions hold and *** 414,471 **** so that override with m-files is possible.\n\ ") { ! symbol_record *sym_rec; ! ! sym_rec = fbi_sym_tab->lookup ("hold", true); ! if( sym_rec->is_builtin_function() ) { ! sym_rec->unprotect (); ! fbi_sym_tab->rename("hold", "ghold"); ! fbi_sym_tab->clear("hold"); ! curr_sym_tab->clear("hold"); ! sym_rec->protect (); ! } ! ! sym_rec = fbi_sym_tab->lookup ("ishold", true); ! if( sym_rec->is_builtin_function() ) { ! sym_rec->unprotect (); ! fbi_sym_tab->rename("ishold", "gishold"); ! fbi_sym_tab->clear("ishold"); ! curr_sym_tab->clear("ishold"); ! sym_rec->protect (); ! } ! ! return octave_value_list(); } DEFUN_DLD(__grexit__, args,, "Shut down the Grace plotting interface\n\ \n\ Undoes the effect of __grinit__.") { ! symbol_record *sym_rec; ! ! sym_rec = fbi_sym_tab->lookup ("ghold", true); ! if( sym_rec->is_builtin_function() ) { ! fbi_sym_tab->clear("hold"); ! curr_sym_tab->clear("hold"); ! sym_rec->unprotect (); ! fbi_sym_tab->rename("ghold", "hold"); ! sym_rec->protect (); ! fbi_sym_tab->clear("ghold"); ! curr_sym_tab->clear("ghold"); ! } ! ! sym_rec = fbi_sym_tab->lookup ("gishold", true); ! if( sym_rec->is_builtin_function() ) { ! fbi_sym_tab->clear("ishold"); ! curr_sym_tab->clear("ishold"); ! sym_rec->unprotect (); ! fbi_sym_tab->rename("gishold", "ishold"); ! sym_rec->protect (); ! fbi_sym_tab->clear("gishold"); ! curr_sym_tab->clear("gishold"); ! } ! ! return octave_value_list(); } DEFUN_DLD(__grclf__, args,, "Clear the current figure from all graphs.\n") --- 414,471 ---- so that override with m-files is possible.\n\ ") { ! // symbol_record *sym_rec; ! // ! // sym_rec = fbi_sym_tab->lookup ("hold", true); ! // if( sym_rec->is_builtin_function() ) { ! // sym_rec->unprotect (); ! // fbi_sym_tab->rename("hold", "ghold"); ! // fbi_sym_tab->clear("hold"); ! // curr_sym_tab->clear("hold"); ! // sym_rec->protect (); ! // } ! // ! // sym_rec = fbi_sym_tab->lookup ("ishold", true); ! // if( sym_rec->is_builtin_function() ) { ! // sym_rec->unprotect (); ! // fbi_sym_tab->rename("ishold", "gishold"); ! // fbi_sym_tab->clear("ishold"); ! // curr_sym_tab->clear("ishold"); ! // sym_rec->protect (); ! // } ! // ! // return octave_value_list(); } DEFUN_DLD(__grexit__, args,, "Shut down the Grace plotting interface\n\ \n\ Undoes the effect of __grinit__.") { ! // symbol_record *sym_rec; ! // ! // sym_rec = fbi_sym_tab->lookup ("ghold", true); ! // if( sym_rec->is_builtin_function() ) { ! // fbi_sym_tab->clear("hold"); ! // curr_sym_tab->clear("hold"); ! // sym_rec->unprotect (); ! // fbi_sym_tab->rename("ghold", "hold"); ! // sym_rec->protect (); ! // fbi_sym_tab->clear("ghold"); ! // curr_sym_tab->clear("ghold"); ! // } ! // ! // sym_rec = fbi_sym_tab->lookup ("gishold", true); ! // if( sym_rec->is_builtin_function() ) { ! // fbi_sym_tab->clear("ishold"); ! // curr_sym_tab->clear("ishold"); ! // sym_rec->unprotect (); ! // fbi_sym_tab->rename("gishold", "ishold"); ! // sym_rec->protect (); ! // fbi_sym_tab->clear("gishold"); ! // curr_sym_tab->clear("gishold"); ! // } ! // ! // return octave_value_list(); } DEFUN_DLD(__grclf__, args,, "Clear the current figure from all graphs.\n")