diff options
| author | YAMAMOTO Mitsuharu | 2005-03-16 08:24:47 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2005-03-16 08:24:47 +0000 |
| commit | a39012644546a6bcd053ab26a48ce2285886870e (patch) | |
| tree | 175e3df13a181c535b3eefb328c5b6e69da56418 /src | |
| parent | 469fb3cf8c03387ffd0b5b7054a0ddac5d601a28 (diff) | |
| download | emacs-a39012644546a6bcd053ab26a48ce2285886870e.tar.gz emacs-a39012644546a6bcd053ab26a48ce2285886870e.zip | |
Fix typo (skip_while_space -> skip_white_space).
Diffstat (limited to 'src')
| -rw-r--r-- | src/mac.c | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -566,7 +566,7 @@ cfproperty_list_to_lisp (plist, with_tag, hash_bound) | |||
| 566 | #define SINGLE_COMPONENT Qquote /* '?' ("Q"uestion) */ | 566 | #define SINGLE_COMPONENT Qquote /* '?' ("Q"uestion) */ |
| 567 | 567 | ||
| 568 | static void | 568 | static void |
| 569 | skip_while_space (p) | 569 | skip_white_space (p) |
| 570 | char **p; | 570 | char **p; |
| 571 | { | 571 | { |
| 572 | /* WhiteSpace = {<space> | <horizontal tab>} */ | 572 | /* WhiteSpace = {<space> | <horizontal tab>} */ |
| @@ -787,15 +787,15 @@ parse_resource_line (p) | |||
| 787 | return Qnil; | 787 | return Qnil; |
| 788 | 788 | ||
| 789 | /* ResourceSpec = WhiteSpace ResourceName WhiteSpace ":" WhiteSpace Value */ | 789 | /* ResourceSpec = WhiteSpace ResourceName WhiteSpace ":" WhiteSpace Value */ |
| 790 | skip_while_space (p); | 790 | skip_white_space (p); |
| 791 | quarks = parse_resource_name (p); | 791 | quarks = parse_resource_name (p); |
| 792 | if (NILP (quarks)) | 792 | if (NILP (quarks)) |
| 793 | goto cleanup; | 793 | goto cleanup; |
| 794 | skip_while_space (p); | 794 | skip_white_space (p); |
| 795 | if (*P != ':') | 795 | if (*P != ':') |
| 796 | goto cleanup; | 796 | goto cleanup; |
| 797 | P++; | 797 | P++; |
| 798 | skip_while_space (p); | 798 | skip_white_space (p); |
| 799 | value = parse_value (p); | 799 | value = parse_value (p); |
| 800 | return Fcons (quarks, value); | 800 | return Fcons (quarks, value); |
| 801 | 801 | ||