1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-08 14:54:13 +01:00

misc fixes

This commit is contained in:
dan
2001-10-26 22:06:28 +00:00
parent 3b1961d40d
commit b1565d01c4
3 changed files with 14 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ typedef WMPropList* proplist_t;
#define PLSetCaseSensitive(c) WMPLSetCaseSensitive(c)
#define PLMakeString(bytes) WMCreatePLString(bytes)
#define PLMakeData(bytes, length) WMCreatePLDataFromBytes(bytes, length)
#define PLMakeData(bytes, length) WMCreatePLDataWithBytes(bytes, length)
#define PLMakeArrayFromElements WMCreatePLArray
#define PLMakeDictionaryFromEntries WMCreatePLDictionary

View File

@@ -730,7 +730,7 @@ getPLArray(PLData *pldata)
} else if (c == ',') {
/* continue normally */
} else if (!first) {
COMPLAIN(pldata, _("missing , or unterminated PropList array"));
COMPLAIN(pldata, _("missing or unterminated PropList array"));
ok = 0;
break;
} else {