jscript: Assorted spelling fixes.
This commit is contained in:
parent
c5bcfbc5c5
commit
69f3d23045
|
@ -27,7 +27,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(jscript);
|
|||
|
||||
/*
|
||||
* This IID is used to get jsdisp_t objecto from interface.
|
||||
* We might consider using private insteface instead.
|
||||
* We might consider using private interface instead.
|
||||
*/
|
||||
static const IID IID_IDispatchJS =
|
||||
{0x719c3050,0xf9d3,0x11cf,{0xa4,0x93,0x00,0x40,0x05,0x23,0xa8,0xa6}};
|
||||
|
|
|
@ -364,7 +364,7 @@ static HRESULT disp_get_id(script_ctx_t *ctx, IDispatch *disp, BSTR name, DWORD
|
|||
|
||||
hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
|
||||
if(FAILED(hres)) {
|
||||
TRACE("unsing IDispatch\n");
|
||||
TRACE("using IDispatch\n");
|
||||
|
||||
*id = 0;
|
||||
return IDispatch_GetIDsOfNames(disp, &IID_NULL, &name, 1, 0, id);
|
||||
|
|
|
@ -99,7 +99,7 @@ static inline BOOL is_uri_unescaped(WCHAR c)
|
|||
return c < 128 && uri_char_table[c] == 2;
|
||||
}
|
||||
|
||||
/* Check that the character is one of the 69 nonblank characters as defined by ECMA-262 B.2.1 */
|
||||
/* Check that the character is one of the 69 non-blank characters as defined by ECMA-262 B.2.1 */
|
||||
static inline BOOL is_ecma_nonblank(const WCHAR c)
|
||||
{
|
||||
return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') ||
|
||||
|
|
|
@ -135,7 +135,7 @@ void *jsheap_grow(jsheap_t *heap, void *mem, DWORD size, DWORD inc)
|
|||
}
|
||||
|
||||
ret = jsheap_alloc(heap, size+inc);
|
||||
if(ret) /* FIXME: avoid coppying for custom blocks */
|
||||
if(ret) /* FIXME: avoid copying for custom blocks */
|
||||
memcpy(ret, mem, size);
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -491,7 +491,7 @@ static int parse_numeric_literal(parser_ctx_t *ctx, literal_t **literal)
|
|||
if(!l) {
|
||||
if(*ctx->ptr == 'x' || *ctx->ptr == 'X') {
|
||||
if(++ctx->ptr == ctx->end) {
|
||||
ERR("unexpexted end of file\n");
|
||||
ERR("unexpected end of file\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -3491,7 +3491,7 @@ static HRESULT RegExp_source(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DIS
|
|||
break;
|
||||
}
|
||||
default:
|
||||
FIXME("Unimplemnted flags %x\n", flags);
|
||||
FIXME("Unimplemented flags %x\n", flags);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue