Mercurial > hg > octave-nkf
comparison src/error.cc @ 3600:c11d138d654a
[project @ 2000-02-24 03:55:32 by jwe]
author | jwe |
---|---|
date | Thu, 24 Feb 2000 03:55:33 +0000 |
parents | d9803711e047 |
children | 0886bbb236cb |
comparison
equal
deleted
inserted
replaced
3599:b8fa63b7ea79 | 3600:c11d138d654a |
---|---|
352 DEFUN (warning, args, , | 352 DEFUN (warning, args, , |
353 "-*- texinfo -*-\n\ | 353 "-*- texinfo -*-\n\ |
354 @deftypefn {Built-in Function} {} warning (@var{msg})\n\ | 354 @deftypefn {Built-in Function} {} warning (@var{msg})\n\ |
355 Print a warning message @var{msg} prefixed by the string @samp{warning: }. \n\ | 355 Print a warning message @var{msg} prefixed by the string @samp{warning: }. \n\ |
356 After printing the warning message, Octave will continue to execute\n\ | 356 After printing the warning message, Octave will continue to execute\n\ |
357 commands. You should use this function should when you want to notify\n\ | 357 commands. You should use this function when you want to notify the user\n\ |
358 the user of an unusual condition, but only when it makes sense for your\n\ | 358 of an unusual condition, but only when it makes sense for your program\n\ |
359 program to go on.\n\ | 359 to go on.\n\ |
360 @end deftypefn") | 360 @end deftypefn") |
361 { | 361 { |
362 return handle_message (warning, "unspecified warning", args); | 362 return handle_message (warning, "unspecified warning", args); |
363 } | 363 } |
364 | 364 |