Mercurial > hg > octave-lyh
changeset 14526:e12945668746
doc: Stop constant rebuild of spline images in txt format.
* splineimages.m: Fix typo in output filename generation for txt format.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Wed, 04 Apr 2012 19:28:16 -0700 |
parents | 624dcb5e978f |
children | 8c988dabbe8e |
files | doc/interpreter/splineimages.m |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/interpreter/splineimages.m +++ b/doc/interpreter/splineimages.m @@ -177,7 +177,7 @@ ## generate something for the texinfo @image command to process function image_as_txt(nm) - fid = fopen (sprintf ("##s.txt", nm), "wt"); + fid = fopen (sprintf ("%s.txt", nm), "wt"); fputs (fid, "\n"); fputs (fid, "+---------------------------------+\n"); fputs (fid, "| Image unavailable in text mode. |\n");