Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 270611 | Differences between
and this patch

Collapse All | Expand All

(-)var/tmp/portage/app-text/t1utils-1.34/work/t1utils-1.34/t1asm.c (-3 / +3 lines)
Lines 280-286 Link Here
280
   the newline is put into line[]. When terminated by '{', the '{' is not put
280
   the newline is put into line[]. When terminated by '{', the '{' is not put
281
   into line[], and the flag start_charstring is set to 1. */
281
   into line[], and the flag start_charstring is set to 1. */
282
282
283
static void getline()
283
static void _getline()
284
{
284
{
285
  int c;
285
  int c;
286
  char *p = line;
286
  char *p = line;
Lines 721-727 Link Here
721
     without /Subrs sections and provided a patch. */
721
     without /Subrs sections and provided a patch. */
722
  
722
  
723
  while (!feof(ifp) && !ferror(ifp)) {
723
  while (!feof(ifp) && !ferror(ifp)) {
724
    getline();
724
    _getline();
725
    
725
    
726
    if (!ever_active) {
726
    if (!ever_active) {
727
      if (strncmp(line, "currentfile eexec", 17) == 0 && isspace(line[17])) {
727
      if (strncmp(line, "currentfile eexec", 17) == 0 && isspace(line[17])) {
Lines 792-798 Link Here
792
  
792
  
793
  /* There may be additional code. */
793
  /* There may be additional code. */
794
  while (!feof(ifp) && !ferror(ifp)) {
794
  while (!feof(ifp) && !ferror(ifp)) {
795
    getline();
795
    _getline();
796
    eexec_string(line);
796
    eexec_string(line);
797
  }
797
  }
798
  
798
  

Return to bug 270611