Changeset 1372 for trunk/src


Ignore:
Timestamp:
Dec 14, 2007, 3:56:42 AM (18 years ago)
Author:
bird
Message:

Fixed endless recursion caused by a missed sh_char_sh reference that should've been sh_char.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/job.c

    r1317 r1372  
    27972797                  if (p[1] != '\\' && p[1] != '\''
    27982798                      && !isspace ((unsigned char)p[1])
     2799# ifdef KMK
     2800                      && strchr (sh_chars, p[1]) == 0)
     2801# else
    27992802                      && strchr (sh_chars_sh, p[1]) == 0)
     2803# endif
    28002804                    /* back up one notch, to copy the backslash */
    28012805                    --p;
Note: See TracChangeset for help on using the changeset viewer.