comparison src/help.cc @ 5040:b6ff3a0d3d17

[project @ 2004-09-27 13:50:01 by jwe]
author jwe
date Mon, 27 Sep 2004 13:50:01 +0000
parents c7ae43dfdea4
children b2ce28713791
comparison
equal deleted inserted replaced
5039:8fa98abef34a 5040:b6ff3a0d3d17
224 { 224 {
225 { "all_va_args", 225 { "all_va_args",
226 "Pass all unnamed arguments to another function call.", }, 226 "Pass all unnamed arguments to another function call.", },
227 227
228 { "break", 228 { "break",
229 "Exit the innermost enclosing while or for loop.", }, 229 "Exit the innermost enclosing do, while or for loop.", },
230
231 { "case",
232 "A case statement in an switch. Octave cases are exclusive and do not\n\
233 fall-through as do C-language cases. A switch statement must have at least\n\
234 one case.",},
230 235
231 { "catch", 236 { "catch",
232 "begin the cleanup part of a try-catch block", }, 237 "begin the cleanup part of a try-catch block", },
233 238
234 { "continue", 239 { "continue",
235 "Jump to the end of the innermost enclosing while or for loop.", }, 240 "Jump to the end of the innermost enclosing do, while or for loop.", },
241
242 { "do",
243 "Begin a do-until loop. This differs from a do-while loop in that the\n\
244 body of the loop is executed at least once.",},
236 245
237 { "else", 246 { "else",
238 "Alternate action for an if block.", }, 247 "Alternate action for an if block.", },
239 248
240 { "elseif", 249 { "elseif",
241 "Alternate conditional test for an if block.", }, 250 "Alternate conditional test for an if block.", },
242 251
243 { "end", 252 { "end",
244 "Mark the end of any for, if, while, or function block.", }, 253 "Mark the end of any for, if, do, while, or function block.", },
245 254
246 { "end_try_catch", 255 { "end_try_catch",
247 "Mark the end of an try-catch block.", }, 256 "Mark the end of an try-catch block.", },
248 257
249 { "end_unwind_protect", 258 { "end_unwind_protect",
277 "Produce 3-D plots using gnuplot-like command syntax.", }, 286 "Produce 3-D plots using gnuplot-like command syntax.", },
278 287
279 { "if", 288 { "if",
280 "Begin an if block.", }, 289 "Begin an if block.", },
281 290
291 { "otherwise",
292 "The default statement in a switch block.", },
293
282 { "persistent", 294 { "persistent",
283 "Declare variables as persistent.", }, 295 "Declare variables as persistent.", },
284 296
297 { "replot",
298 "Replot a graphic.", },
299
285 { "return", 300 { "return",
286 "Return from a function.", }, 301 "Return from a function.", },
287 302
303 { "static",
304 "Declare variables as persistent.", },
305
306 { "switch",
307 "Begin a switch statement.",},
308
288 { "try", 309 { "try",
289 "Begin a try-catch block.", }, 310 "Begin a try-catch block.", },
290 311
312 { "until",
313 "End a do-until loop.",},
314
291 { "unwind_protect", 315 { "unwind_protect",
292 "Begin an unwind_protect block.", }, 316 "Begin an unwind_protect block.", },
293 317
294 { "unwind_protect_cleanup", 318 { "unwind_protect_cleanup",
295 "Begin the cleanup section of an unwind_protect block.", }, 319 "Begin the cleanup section of an unwind_protect block.", },
320
321 { "varargin",
322 "Pass an arbitrary number of arguments into a function.",},
323
324 { "varargout",
325 "Pass an arbitrary number of arguments out of a function.",},
296 326
297 { "while", 327 { "while",
298 "Begin a while loop.", }, 328 "Begin a while loop.", },
299 329
300 { 0, 0, }, 330 { 0, 0, },