1. 26 Sep, 2011 1 commit
  2. 24 Aug, 2011 1 commit
  3. 28 Feb, 2011 1 commit
  4. 21 Feb, 2011 2 commits
  5. 16 Feb, 2011 1 commit
  6. 14 Feb, 2011 1 commit
  7. 30 Dec, 2010 1 commit
  8. 19 Sep, 2010 1 commit
  9. 28 Jul, 2010 1 commit
  10. 26 Apr, 2010 1 commit
  11. 30 Mar, 2010 2 commits
  12. 16 Mar, 2010 2 commits
  13. 08 Feb, 2010 1 commit
  14. 05 Feb, 2010 1 commit
  15. 19 Jan, 2010 1 commit
    • Rob Shearman's avatar
      wpp: Fix expansion of macro bodies following the parsing of a numerical digit. · 3fecf9dd
      Rob Shearman authored
      The current regular expression causes all letters and spaces (among
      other characters) following the appearance of a digit to be classed as
      a literal, including C identifiers which may need to be expanded.
      
      The expression was intended to catch the remaining characters that
      were not covered by the first two rules ([^a-zA-Z0-9'"#/\\\n]+ and
      {cident}), but the [^'"#/\\\n] expression caught {cident} as well.
      While one solution would have been just to catch the expression that
      match [a-zA-Z0-9]* that don't match {cident}, i.e. [0-9][a-zA-Z0-9]*,
      in the interests of avoiding unnecessary multiple LITERALs being
      generated and then combined during parsing the expression also
      includes the first expression, making it
      [0-9][a-zA-Z0-9]*[^a-zA-Z0-9'"#/\\\n]*.
      3fecf9dd
  16. 04 Jan, 2010 1 commit
  17. 30 Dec, 2009 1 commit
  18. 29 Dec, 2009 1 commit
  19. 13 Oct, 2009 1 commit
  20. 07 Oct, 2009 1 commit
  21. 06 Oct, 2009 3 commits
  22. 02 Oct, 2009 4 commits
  23. 27 Dec, 2008 1 commit
  24. 22 Oct, 2008 1 commit
  25. 07 Jul, 2008 1 commit
  26. 30 Jun, 2008 2 commits
  27. 04 Mar, 2008 2 commits
  28. 19 Feb, 2008 2 commits
  29. 16 Jan, 2008 1 commit