The R Project SVN R-packages

Rev

Rev 6093 | Rev 6109 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6093 Rev 6094
Line 874... Line 874...
874
	}
874
	}
875
}
875
}
876
 
876
 
877
-(void)highlightCharacter:(NSNumber*)loc
877
-(void)highlightCharacter:(NSNumber*)loc
878
{
878
{
-
 
879
	NSInteger pos = [loc intValue];
879
 
880
 
880
	SLog(@"RScriptEditorTextView: highlightCharacter: %d", pos);
881
	SLog(@"RScriptEditorTextView: highlightCharacter: %d", pos);
881
 
882
 
882
	NSInteger pos = [loc intValue];
-
 
883
 
-
 
884
	if (pos>=0 && pos<[[self string] length]) {
883
	if (pos>=0 && pos<[[self string] length]) {
885
 
884
 
886
#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
885
#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
887
		[self showFindIndicatorForRange:NSMakeRange(pos, 1)];
886
		[self showFindIndicatorForRange:NSMakeRange(pos, 1)];
888
#else
887
#else