Changeset 4298
- Timestamp:
- 10/11/03 00:11:02 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/j/FindTagTextFieldHandler.java
r2742 r4298 64 64 if (tags != null) { 65 65 if (tags.size() > 1) { 66 // Can we get a unique match if we just consider methods and67 // explicit tags?66 // Can we get a unique match if we just consider defuns etc. 67 // and explicit tags? 68 68 ArrayList shortList = new ArrayList(); 69 69 for (Iterator it = tags.iterator(); it.hasNext();) { … … 71 71 if (tag instanceof LocalTag) { 72 72 int type = ((LocalTag)tag).getType(); 73 // Java etc. 73 74 if (type == TAG_METHOD || type == TAG_EXPLICIT) 75 shortList.add(tag); 76 // Lisp. 77 if (type == TAG_DEFUN || type == TAG_GENERIC_FUNCTION || 78 type == TAG_MACRO) 74 79 shortList.add(tag); 75 80 }
Note: See TracChangeset
for help on using the changeset viewer.