Index: /issm/trunk/src/m/model/plot/applyoptions.m
===================================================================
--- /issm/trunk/src/m/model/plot/applyoptions.m	(revision 8734)
+++ /issm/trunk/src/m/model/plot/applyoptions.m	(revision 8735)
@@ -222,5 +222,5 @@
 	if exist(options,'colorbartitle'),
 		set(get(c,'title'),'FontSize',getfieldvalue(options,'colorbarfontsize',fontsize),'String',getfieldvalue(options,'colorbartitle'),...
-			'Color',getfieldvalue(options,'FontColor','k'),'Interpreter',getfieldvalue(options,'Interpreter','none'),'Interpreter','Tex');
+			'Color',getfieldvalue(options,'FontColor','k'));
 	end
 	if exist(options,'colorbarYLabel'),
Index: /issm/trunk/src/m/model/radarpower.m
===================================================================
--- /issm/trunk/src/m/model/radarpower.m	(revision 8734)
+++ /issm/trunk/src/m/model/radarpower.m	(revision 8735)
@@ -9,4 +9,7 @@
 %      md=radarpower(md,options);
 %      md=radarpower(md)
+
+%If gdal does not work, uncomment the following line
+%setenv('LD_LIBRARY_PATH','');
 
 %Parse inputs
Index: /issm/trunk/src/m/utils/genpath_ice.m
===================================================================
--- /issm/trunk/src/m/utils/genpath_ice.m	(revision 8734)
+++ /issm/trunk/src/m/utils/genpath_ice.m	(revision 8735)
@@ -27,12 +27,12 @@
 for i=1:length(dirs)
 	dirname=dirs(i).name;
-	if  ~strcmp(dirname,'.')  & ...
+	if ~strcmp(dirname,'.')    & ...
 		~strcmp(dirname,'..')   & ...
-		~strcmp(dirname,'.svn') &...
-		~strcmp(dirname,'CVS') & ...
-		~strncmp(dirname,'@',1)& ... %Method directories not allowed in MATLAB path
-		~strcmp(dirname,'private')        %private directories not allowed in MATLAB path
+		~strcmp(dirname,'.svn') & ...
+		~strcmp(dirname,'CVS')  & ...
+		~strncmp(dirname,'@',1) & ... %Method directories not allowed in MATLAB path
+		~strcmp(dirname,'private')    %private directories not allowed in MATLAB path
 
-	p = [p genpath_ice(fullfile(d,dirname))];
+		p = [p genpath_ice(fullfile(d,dirname))];
 	end
 end
