indent.bsd.patch
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. This increases the number of typedef's understood by BSD indent from 100
  2. to 1000.  The second patch allows it to understand 0x7fU constants.
  3. ---------------------------------------------------------------------------
  4. *** ./lexi.c.orig Mon Sep  8 17:55:47 1997
  5. --- ./lexi.c Mon Sep  8 17:02:10 1997
  6. ***************
  7. *** 58,64 ****
  8.       int         rwcode;
  9.   };
  10.   
  11. ! struct templ specials[100] =
  12.   {
  13.       "switch", 1,
  14.       "case", 2,
  15. --- 58,64 ----
  16.       int         rwcode;
  17.   };
  18.   
  19. ! struct templ specials[4096] =
  20.   {
  21.       "switch", 1,
  22.       "case", 2,
  23. *** ./lexi.c.orig Wed May 26 10:50:54 1999
  24. --- ./lexi.c Wed May 26 10:51:08 1999
  25. ***************
  26. *** 186,192 ****
  27.    *e_token++ = *buf_ptr++;
  28.    }
  29.    }
  30. !      if (*buf_ptr == 'L' || *buf_ptr == 'l')
  31.    *e_token++ = *buf_ptr++;
  32.    }
  33.    else
  34. --- 186,193 ----
  35.    *e_token++ = *buf_ptr++;
  36.    }
  37.    }
  38. !      if (*buf_ptr == 'L' || *buf_ptr == 'U' ||
  39. !  *buf_ptr == 'l' || *buf_ptr == 'u')
  40.    *e_token++ = *buf_ptr++;
  41.    }
  42.    else