Mercurial > hg > xemacs-beta
comparison lwlib/lwlib.c @ 410:de805c49cfc1 r21-2-35
Import from CVS: tag r21-2-35
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:19:21 +0200 |
parents | b8cc9ab3f761 |
children | 697ef44129c6 |
comparison
equal
deleted
inserted
replaced
409:301b9ebbdf3b | 410:de805c49cfc1 |
---|---|
506 { | 506 { |
507 if (!!s1 ^ !!s2) return True; | 507 if (!!s1 ^ !!s2) return True; |
508 return (s1 && s2) ? strcmp (s1, s2) : s1 ? False : !!s2; | 508 return (s1 && s2) ? strcmp (s1, s2) : s1 ? False : !!s2; |
509 } | 509 } |
510 | 510 |
511 #ifndef WINDOWSNT | 511 #ifndef WIN32_NATIVE |
512 static change_type | 512 static change_type |
513 max (change_type i1, change_type i2) | 513 max (change_type i1, change_type i2) |
514 { | 514 { |
515 return (int)i1 > (int)i2 ? i1 : i2; | 515 return (int)i1 > (int)i2 ? i1 : i2; |
516 } | 516 } |