| 
					
				 | 
			
			
				@@ -361,8 +361,8 @@ that the appropriate major-mode is set.  SPEC has the form: 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 (defvar org-comment-string) ;; Defined in org.el 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 (defun org-babel-under-commented-heading-p () 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   "Return t if currently under a commented heading." 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  (if (string-match (concat "^" org-comment-string) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-		    (nth 4 (org-heading-components))) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  (if (let ((hd (nth 4 (org-heading-components)))) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	(and hd (string-match (concat "^" org-comment-string) hd))) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       t 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     (save-excursion 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       (and (org-up-heading-safe) 
			 |