# HG changeset patch # User Rik # Date 1333592896 25200 # Node ID e12945668746d81a5e06e28e4b0df8b9a9dc3556 # Parent 624dcb5e978fe073e672c2d6521207245f1b03f0 doc: Stop constant rebuild of spline images in txt format. * splineimages.m: Fix typo in output filename generation for txt format. diff --git a/doc/interpreter/splineimages.m b/doc/interpreter/splineimages.m --- 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");