View | Details | Raw Unified
Collapse All | Expand All

(-) file_not_specified_in_diff (-3 / +4 lines)
 Lines 294-301    Link Here 
   # stderr output was not messing up the parsing of the results anymore.
   # stderr output was not messing up the parsing of the results anymore.
   # Thanks Brandon
   # Thanks Brandon
   $rc = system('exec 3> ' . $tempfile . ' ; DIALOG_ESC="" dialog '
   my ($cmdfh, $cmdfile) = tempfile('dialog.XXXXXX', DIR => '/tmp', UNLINK => 1);
               . ' --output-fd 3'
   print $cmdfh  ' --output-fd 3'
               . ' --separate-output '
               . ' --separate-output '
               . '--no-shadow --backtitle "Gentoo Linux USE flags editor '
               . '--no-shadow --backtitle "Gentoo Linux USE flags editor '
               . $version . '" '
               . $version . '" '
 Lines 305-311    Link Here 
               . $lines . ' '
               . $lines . ' '
               . $cols . ' '
               . $cols . ' '
               . ($lines - 8) . ' '
               . ($lines - 8) . ' '
               . $items) >> 8;
               . $items;
   $rc = system('exec 3> ' . $tempfile . ' ; DIALOG_ESC="" dialog --file ' . $cmdfile) >> 8;
   if ($rc == 1)
   if ($rc == 1)
      { return 'CANCEL'; }
      { return 'CANCEL'; }
   if ($rc == 255)
   if ($rc == 255)