*** /usr/share/octave/2.9.8/m/plot/print.m 2006-09-15 10:38:37.000000000 -0600 --- print.m 2006-10-04 15:28:48.000000000 -0600 *************** *** 133,138 **** --- 133,139 ---- name = ""; devopt = ""; printer = ""; + enhanced = "noenhanced "; for i = 1:nargin arg = varargin{i}; *************** *** 149,154 **** --- 150,159 ---- orientation = "portrait"; elseif (strcmp (arg, "-landscape")) orientation = "landscape"; + elseif (strcmp (arg, "-enhanced")) + enhanced = "enhanced "; + elseif (strcmp (arg, "-noenhanced")) + enhanced = "noenhanced "; elseif (length (arg) > 2 && arg(1:2) == "-d") devopt = arg(3:length(arg)); elseif (length (arg) > 2 && arg(1:2) == "-P") *************** *** 225,231 **** else options = strcat (orientation, " "); endif ! options = strcat (options, "enhanced "); if (any (dev == "c") || use_color > 0) if (force_solid < 0) --- 230,236 ---- else options = strcat (orientation, " "); endif ! options = strcat (options, enhanced); if (any (dev == "c") || use_color > 0) if (force_solid < 0)