Index: print.m =================================================================== RCS file: /cvs/octave/scripts/plot/print.m,v retrieving revision 1.20 diff -u -p -r1.20 print.m --- print.m 15 Jun 2007 21:59:16 -0000 1.20 +++ print.m 28 Jun 2007 06:08:47 -0000 @@ -194,7 +194,7 @@ function print (varargin) dev_list = {"aifm", "corel", "fig", "png", "pbm", "dxf", "mf", ... "hpgl", "ps", "ps2", "psc", "psc2", "eps", "eps2", ... "epsc", "epsc2", "emf", "pstex", "pslatex", ... - "epslatex", "epslatexstandalone"}; + "epslatex", "epslatexstandalone","svg"}; convertname = ""; [idx, errmsg] = cellidx (dev_list, dev); if (! idx) @@ -330,6 +330,8 @@ function print (varargin) elseif (strcmp (dev, "dxf") || strcmp (dev, "mf") || strcmp (dev, "hpgl")) ## AutoCad DXF, METAFONT, HPGL new_terminal = dev; + elseif (strcmp(dev,"svg")) + new_terminal = dev; endif drawnow (new_terminal, name);