mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	2000-05-18
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@699 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
		
							parent
							
								
									3e51a5b1b5
								
							
						
					
					
						commit
						a62935cf06
					
				
					 14 changed files with 260 additions and 108 deletions
				
			
		
							
								
								
									
										6
									
								
								regex.h
									
										
									
									
									
								
							
							
						
						
									
										6
									
								
								regex.h
									
										
									
									
									
								
							|  | @ -69,12 +69,10 @@ | |||
| #define RE_OPTION_IGNORECASE (1L) | ||||
| /* perl-style extended pattern available */ | ||||
| #define RE_OPTION_EXTENDED   (RE_OPTION_IGNORECASE<<1) | ||||
| /* newline will be included for ., ^, $ does not handle newline - obsolete */ | ||||
| #define RE_OPTION_POSIXLINE  (RE_OPTION_EXTENDED<<1) | ||||
| /* newline will be included for . */ | ||||
| #define RE_OPTION_MULTILINE  (RE_OPTION_POSIXLINE<<1) | ||||
| #define RE_OPTION_MULTILINE  (RE_OPTION_EXTENDED<<1) | ||||
| /* search for longest match, in accord with POSIX regexp */ | ||||
| #define RE_OPTION_LONGEST    (RE_OPTION_POSIXLINE<<1) | ||||
| #define RE_OPTION_LONGEST    (RE_OPTION_MULTILINE<<1) | ||||
| 
 | ||||
| #define RE_MAY_IGNORECASE    (RE_OPTION_LONGEST<<1) | ||||
| #define RE_OPTIMIZE_ANCHOR   (RE_MAY_IGNORECASE<<1) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 matz
						matz