Mercurial > hg > octave-lyh
comparison src/ov-list.cc @ 2985:aa9d0c0e0458
[project @ 1997-05-16 06:54:18 by jwe]
author | jwe |
---|---|
date | Fri, 16 May 1997 06:55:52 +0000 |
parents | ebbc34ff7f66 |
children | 91589ab98e37 |
comparison
equal
deleted
inserted
replaced
2984:84c33881d0bc | 2985:aa9d0c0e0458 |
---|---|
87 } | 87 } |
88 | 88 |
89 void | 89 void |
90 octave_list::print_raw (ostream& os, bool) const | 90 octave_list::print_raw (ostream& os, bool) const |
91 { | 91 { |
92 begin_unwind_frame ("octave_list_print"); | 92 unwind_protect::begin_frame ("octave_list_print"); |
93 | 93 |
94 indent (os); | 94 indent (os); |
95 os << "("; | 95 os << "("; |
96 newline (os); | 96 newline (os); |
97 | 97 |
116 | 116 |
117 indent (os); | 117 indent (os); |
118 os << ")"; | 118 os << ")"; |
119 newline (os); | 119 newline (os); |
120 | 120 |
121 run_unwind_frame ("octave_list_print"); | 121 unwind_protect::run_frame ("octave_list_print"); |
122 } | 122 } |
123 | 123 |
124 bool | 124 bool |
125 octave_list::print_name_tag (ostream& os, const string& name) const | 125 octave_list::print_name_tag (ostream& os, const string& name) const |
126 { | 126 { |