diff src/variables.cc @ 2447:e46137c06781

[project @ 1996-10-30 19:39:03 by jwe]
author jwe
date Wed, 30 Oct 1996 19:39:06 +0000
parents f667d7ec08b9
children 1e673f0648b5
line wrap: on
line diff
--- a/src/variables.cc
+++ b/src/variables.cc
@@ -1369,25 +1369,6 @@
 
 // Defining variables.
 
-#if 0
-void
-bind_nargin_and_nargout (symbol_table *sym_tab, int nargin, int nargout)
-{
-  octave_value *tmp;
-  symbol_record *sr;
-
-  sr = sym_tab->lookup ("nargin", 1, 0);
-  sr->unprotect ();
-  tmp = new octave_value (nargin);
-  sr->define (tmp);
-
-  sr = sym_tab->lookup ("nargout", 1, 0);
-  sr->unprotect ();
-  tmp = new octave_value (nargout);
-  sr->define (tmp);
-}
-#endif
-
 void
 bind_ans (const octave_value& val, int print)
 {