# HG changeset patch # User John W. Eaton # Date 1233872084 18000 # Node ID d7306ecd077a45c41801796e13ab791dcc630511 # Parent f3579c1d6be98365af149dd00b966b3a3d94915d news.m: use puts, not printf diff -r f3579c1d6be9 -r d7306ecd077a scripts/ChangeLog --- a/scripts/ChangeLog Thu Feb 05 17:04:09 2009 -0500 +++ b/scripts/ChangeLog Thu Feb 05 17:14:44 2009 -0500 @@ -1,3 +1,7 @@ +2009-02-05 John W. Eaton + + * miscellaneous/news.m: Use puts instead of printf. + 2009-02-05 Thomas D. Dean * polynomial/polyout.m: Replace com2str with num2str, and minor diff -r f3579c1d6be9 -r d7306ecd077a scripts/miscellaneous/news.m --- a/scripts/miscellaneous/news.m Thu Feb 05 17:04:09 2009 -0500 +++ b/scripts/miscellaneous/news.m Thu Feb 05 17:14:44 2009 -0500 @@ -29,7 +29,7 @@ if (exist (newsfile, "file")) f = fopen (newsfile, "r"); while (ischar (line = fgets (f))) - printf (line); + puts (line); endwhile else error ("news: unable to locate NEWS file");