PennMUSH Community

Changeset 1151

Show
Ignore:
Timestamp:
11/16/07 10:07:07 (10 months ago)
Author:
shawnw
Message:

Ran make indent

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.3/branches/devel/hdrs/mypcre.h

    r1145 r1151  
    4747struct pcre_extra; 
    4848void set_match_limit(struct pcre_extra *); 
    49 struct pcre_extra * default_match_limit(void); 
     49struct pcre_extra *default_match_limit(void); 
    5050 
    5151#ifdef HAVE_PCRE 
     
    214214#endif                          /* !HAVE_PCRE */ 
    215215#endif                          /* End of pcre.h */ 
    216  
  • 1.8.3/branches/devel/src/funlist.c

    r1145 r1151  
    31343134    reharg.study = default_match_limit(); 
    31353135  } 
    3136        
     3136 
    31373137  reharg.buff = buff; 
    31383138  reharg.bp = bp; 
  • 1.8.3/branches/devel/src/pcre.c

    r1145 r1151  
    92259225/* End of pcre_exec.c */ 
    92269226 
    9227 #endif /* !HAVE_PCRE */ 
     9227#endif                          /* !HAVE_PCRE */ 
    92289228 
    92299229/** Return a default pcre_extra pointer pointing to a static region 
     
    92389238  return &ex; 
    92399239} 
    9240    
     9240 
    92419241 
    92429242/** Set a low match-limit setting in an existing pcre_extra struct. */ 
     
    92499249  ex->match_limit = PENN_MATCH_LIMIT; 
    92509250} 
    9251