Macroses update, addressbook fixes, other changes

This commit is contained in:
Alexander S. Aganichev
2001-02-24 18:37:28 +00:00
parent 61b129311f
commit feb27a793a
29 changed files with 509 additions and 311 deletions

View File

@@ -74,7 +74,7 @@ void getkeyvaleql(char** key, char** val, bool eql) {
// Get straight keyword
default:
*key = p;
while(*p and not isspace(*p)) {
while(*p and not isspace(*p) and (*p != ',')) {
if(eql and (*p == '='))
break;
p++;