Mercurial > hg > octave-avbm
comparison src/defun.cc @ 4234:90e44267e8cf
[project @ 2002-12-21 17:15:25 by jwe]
author | jwe |
---|---|
date | Sat, 21 Dec 2002 17:15:25 +0000 |
parents | e96f52432059 |
children | 3e94126d8071 |
comparison
equal
deleted
inserted
replaced
4233:ccfdb55c8156 | 4234:90e44267e8cf |
---|---|
95 sym_rec->protect (); | 95 sym_rec->protect (); |
96 } | 96 } |
97 | 97 |
98 void | 98 void |
99 install_builtin_function (octave_builtin::fcn f, const std::string& name, | 99 install_builtin_function (octave_builtin::fcn f, const std::string& name, |
100 const std::string& doc, bool is_text_fcn) | 100 const std::string& doc, bool is_text_fcn, |
101 bool /* can_hide_function -- not yet implemented */) | |
101 { | 102 { |
102 symbol_record *sym_rec = fbi_sym_tab->lookup (name, true); | 103 symbol_record *sym_rec = fbi_sym_tab->lookup (name, true); |
103 | 104 |
104 unsigned int t = symbol_record::BUILTIN_FUNCTION; | 105 unsigned int t = symbol_record::BUILTIN_FUNCTION; |
105 | 106 |