Mercurial > hg > octave-nkf
diff src/pt-pr-code.cc @ 4342:813effe14ee1
[project @ 2003-02-20 08:35:55 by jwe]
author | jwe |
---|---|
date | Thu, 20 Feb 2003 08:35:55 +0000 |
parents | 23d06c9e1edd |
children | c0aa75a64635 |
line wrap: on
line diff
--- a/src/pt-pr-code.cc +++ b/src/pt-pr-code.cc @@ -642,6 +642,18 @@ } void +tree_print_code::visit_fcn_handle (tree_fcn_handle& fh) +{ + indent (); + + print_parens (fh, "("); + + fh.print_raw (os, true, print_original_text); + + print_parens (fh, ")"); +} + +void tree_print_code::visit_parameter_list (tree_parameter_list& lst) { tree_parameter_list::iterator p = lst.begin ();