comparison doc/interpreter/mk_doc_cache.m @ 12254:23385f2c90b7 release-3-4-x

whitespace fixes
author John W. Eaton <jwe@octave.org>
date Wed, 26 Jan 2011 23:49:42 -0500
parents fd0a3ac60b0e
children f5535b401c83
comparison
equal deleted inserted replaced
12253:1f14586af94c 12254:23385f2c90b7
85 85
86 [symbol, doc] = strtok (block, "\r\n"); 86 [symbol, doc] = strtok (block, "\r\n");
87 87
88 doc = regexprep (doc, "^[\r\n]+", ''); 88 doc = regexprep (doc, "^[\r\n]+", '');
89 89
90 ## Skip internal functions that start with __ as these aren't 90 ## Skip internal functions that start with __ as these aren't
91 ## indexed by lookfor. 91 ## indexed by lookfor.
92 if (length (symbol) > 2 && regexp (symbol, '^__.+__$')) 92 if (length (symbol) > 2 && regexp (symbol, '^__.+__$'))
93 continue; 93 continue;
94 endif 94 endif
95 95