function try_indenting_file(fileName)
% TRY_INDENTING_FILE(FILENAME)

%   Copyright 1995-2002 The MathWorks, Inc.
%   $Revision: 1.6.2.2 $  $Date: 2004/04/15 00:51:54 $

	global gTargetInfo

	if gTargetInfo.codingRTW
		%%% we indent all these files as part of RTW build procedure. no need to do it now.
		return;
	end
	try,
		sf('Private','c_indent',fileName);
	catch,
		lasterr('');
	end
 