aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2005-03-16 08:24:47 +0000
committerYAMAMOTO Mitsuharu2005-03-16 08:24:47 +0000
commita39012644546a6bcd053ab26a48ce2285886870e (patch)
tree175e3df13a181c535b3eefb328c5b6e69da56418 /src
parent469fb3cf8c03387ffd0b5b7054a0ddac5d601a28 (diff)
downloademacs-a39012644546a6bcd053ab26a48ce2285886870e.tar.gz
emacs-a39012644546a6bcd053ab26a48ce2285886870e.zip
Fix typo (skip_while_space -> skip_white_space).
Diffstat (limited to 'src')
-rw-r--r--src/mac.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mac.c b/src/mac.c
index d57d6925c5d..8b899100198 100644
--- a/src/mac.c
+++ b/src/mac.c
@@ -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
568static void 568static void
569skip_while_space (p) 569skip_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