changeset 22244:a4ff69a4f239

__unimplemented__.m: Don't print backtrace when issuing warning. * __unimplemented__.m: Add "\n" to call to warning to stop backtrace.
author Rik <rik@octave.org>
date Tue, 09 Aug 2016 16:50:37 -0700
parents 654de580bdb3
children 3d287a11ea18
files scripts/help/__unimplemented__.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/help/__unimplemented__.m	Mon Jul 18 19:54:34 2016 +0200
+++ b/scripts/help/__unimplemented__.m	Tue Aug 09 16:50:37 2016 -0700
@@ -515,7 +515,7 @@
   endif
 
   if (nargout == 0)
-    warning ("Octave:missing-function", "%s", txt);
+    warning ("Octave:missing-function", "%s\n", txt);
   endif
 
 endfunction