comparison scripts/java/javaclasspath.m @ 21634:96518f623c91

Backed out changeset dcf8922b724b
author Mike Miller <mtmiller@octave.org>
date Wed, 20 Apr 2016 11:06:03 -0700
parents dcf8922b724b
children b571fc85953f
comparison
equal deleted inserted replaced
21633:dcf8922b724b 21634:96518f623c91
111 endfunction 111 endfunction
112 112
113 ## Display cell array of paths 113 ## Display cell array of paths
114 114
115 function disp_path_list (which, path_list) 115 function disp_path_list (which, path_list)
116 fprintf (" %s JAVA PATH\n\n", which); 116 printf (" %s JAVA PATH\n\n", which);
117 if (numel (path_list) > 0) 117 if (numel (path_list) > 0)
118 fprintf (" %s\n", path_list{:}); 118 printf (" %s\n", path_list{:});
119 else 119 else
120 fprintf (" - empty -\n"); 120 printf (" - empty -\n");
121 endif 121 endif
122 endfunction 122 endfunction
123 123