File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,13 @@ protected void loadKeywords(File keywordFile,
166166 if (htmlFilename .endsWith ("_" )) {
167167 keyword += "_" ;
168168 }
169- keywordToReference .put (keyword , htmlFilename );
169+ // Allow the bare size() command to override the lookup
170+ // for StringList.size() and others, but not vice-versa.
171+ // https://github.com/processing/processing/issues/4224
172+ boolean seen = keywordToReference .containsKey (keyword );
173+ if (!seen || (seen && keyword .equals (htmlFilename ))) {
174+ keywordToReference .put (keyword , htmlFilename );
175+ }
170176 }
171177 }
172178 }
Original file line number Diff line number Diff line change 110254 (3.2.2 or 3.3)
2+ X Find in reference for size() opens StringList.size()
3+ X https://github.com/processing/processing/issues/4224
4+ X though that's still imperfect:
5+ X https://github.com/processing/processing/issues/4655
26X more font tweaks to make mono fonts work properly after #4639
37_ update the Linux notes based on where we land on this
48_ https://github.com/processing/processing/wiki/Supported-Platforms#linux
You can’t perform that action at this time.
0 commit comments