emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/mac.c


From: YAMAMOTO Mitsuharu
Subject: [Emacs-diffs] Changes to emacs/src/mac.c
Date: Wed, 16 Mar 2005 03:24:47 -0500

Index: emacs/src/mac.c
diff -c emacs/src/mac.c:1.28 emacs/src/mac.c:1.29
*** emacs/src/mac.c:1.28        Wed Mar 16 08:05:56 2005
--- emacs/src/mac.c     Wed Mar 16 08:24:47 2005
***************
*** 566,572 ****
  #define SINGLE_COMPONENT Qquote        /* '?' ("Q"uestion) */
  
  static void
! skip_while_space (p)
       char **p;
  {
    /* WhiteSpace = {<space> | <horizontal tab>} */
--- 566,572 ----
  #define SINGLE_COMPONENT Qquote        /* '?' ("Q"uestion) */
  
  static void
! skip_white_space (p)
       char **p;
  {
    /* WhiteSpace = {<space> | <horizontal tab>} */
***************
*** 787,801 ****
      return Qnil;
  
    /* ResourceSpec = WhiteSpace ResourceName WhiteSpace ":" WhiteSpace Value */
!   skip_while_space (p);
    quarks = parse_resource_name (p);
    if (NILP (quarks))
      goto cleanup;
!   skip_while_space (p);
    if (*P != ':')
      goto cleanup;
    P++;
!   skip_while_space (p);
    value = parse_value (p);
    return Fcons (quarks, value);
  
--- 787,801 ----
      return Qnil;
  
    /* ResourceSpec = WhiteSpace ResourceName WhiteSpace ":" WhiteSpace Value */
!   skip_white_space (p);
    quarks = parse_resource_name (p);
    if (NILP (quarks))
      goto cleanup;
!   skip_white_space (p);
    if (*P != ':')
      goto cleanup;
    P++;
!   skip_white_space (p);
    value = parse_value (p);
    return Fcons (quarks, value);
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]