Fix typo (skip_while_space -> skip_white_space).
This commit is contained in:
parent
469fb3cf8c
commit
a390126445
1 changed files with 4 additions and 4 deletions
|
@ -566,7 +566,7 @@ cfproperty_list_to_lisp (plist, with_tag, hash_bound)
|
|||
#define SINGLE_COMPONENT Qquote /* '?' ("Q"uestion) */
|
||||
|
||||
static void
|
||||
skip_while_space (p)
|
||||
skip_white_space (p)
|
||||
char **p;
|
||||
{
|
||||
/* WhiteSpace = {<space> | <horizontal tab>} */
|
||||
|
@ -787,15 +787,15 @@ parse_resource_line (p)
|
|||
return Qnil;
|
||||
|
||||
/* ResourceSpec = WhiteSpace ResourceName WhiteSpace ":" WhiteSpace Value */
|
||||
skip_while_space (p);
|
||||
skip_white_space (p);
|
||||
quarks = parse_resource_name (p);
|
||||
if (NILP (quarks))
|
||||
goto cleanup;
|
||||
skip_while_space (p);
|
||||
skip_white_space (p);
|
||||
if (*P != ':')
|
||||
goto cleanup;
|
||||
P++;
|
||||
skip_while_space (p);
|
||||
skip_white_space (p);
|
||||
value = parse_value (p);
|
||||
return Fcons (quarks, value);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue