mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-03 18:20:25 +02:00 
			
		
		
		
	DocBook: Fix kernel-doc to be case-insensitive for private:
On some places, people could use Private: to tag the private fields of an struct. So, be case-insensitive when parsing "private:" meta-tag. Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
This commit is contained in:
		
							parent
							
								
									1c35c283f2
								
							
						
					
					
						commit
						0d8c39e6c6
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -1805,8 +1805,8 @@ sub dump_struct($$) {
 | 
			
		|||
	$nested = $1;
 | 
			
		||||
 | 
			
		||||
	# ignore members marked private:
 | 
			
		||||
	$members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gos;
 | 
			
		||||
	$members =~ s/\/\*\s*private:.*//gos;
 | 
			
		||||
	$members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
 | 
			
		||||
	$members =~ s/\/\*\s*private:.*//gosi;
 | 
			
		||||
	# strip comments:
 | 
			
		||||
	$members =~ s/\/\*.*?\*\///gos;
 | 
			
		||||
	$nested =~ s/\/\*.*?\*\///gos;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue