comparison src/syntax.c @ 4653:25e5e5346d31

?\012 is whitespace, as it always should have been, thank you Karl Kleinpaste. src/ChangeLog addition: 2009-07-15 Aidan Kehoe <kehoea@parhasard.net> * syntax.c (complex_vars_of_syntax): ?\012 is whitespace, as it always should have been, thank you Karl Kleinpaste and the Gnus team!
author Aidan Kehoe <kehoea@parhasard.net>
date Wed, 15 Jul 2009 00:19:45 +0100
parents 77138fc618a9
children 3a87551bfeb5
comparison
equal deleted inserted replaced
4650:8905163c49c5 4653:25e5e5346d31
2489 SET_RANGE_SYNTAX(0, 32, Spunct); 2489 SET_RANGE_SYNTAX(0, 32, Spunct);
2490 2490
2491 /* The whitespace--overwriting some of the above changes. 2491 /* The whitespace--overwriting some of the above changes.
2492 2492
2493 String literals are const char *s, not const unsigned char *s. */ 2493 String literals are const char *s, not const unsigned char *s. */
2494 define_standard_syntax((const UExtbyte *)" \t\015\014", Swhitespace); 2494 define_standard_syntax((const UExtbyte *)" \t\015\014\012", Swhitespace);
2495 2495
2496 /* DEL plus Control 1 */ 2496 /* DEL plus Control 1 */
2497 SET_RANGE_SYNTAX(127, 159, Spunct); 2497 SET_RANGE_SYNTAX(127, 159, Spunct);
2498 2498
2499 define_standard_syntax ((const UExtbyte *)"\"", Sstring); 2499 define_standard_syntax ((const UExtbyte *)"\"", Sstring);