gusucode.com > private工具箱matlab源码程序 > private/try_indenting_file.m

    function try_indenting_file(fileName)
% TRY_INDENTING_FILE(FILENAME)

%   Copyright 1995-2009 The MathWorks, Inc.
%   $Revision: 1.6.2.9 $  $Date: 2013/09/10 12:31:34 $

	global gTargetInfo

	if gTargetInfo.codingRTW || gTargetInfo.codingHDL || gTargetInfo.codingPLC
		%%% we indent all these files as part of build procedure. no need to do it now.
		return;
	end
	try
		sfprivate('c_beautifier',fileName);
    catch ME %#ok<NASGU>
	end