Changeset 4fd211f
- Timestamp:
- Apr 3, 2011, 4:00:04 PM (14 years ago)
- Branches:
- master, release-1.10, release-1.8, release-1.9
- Children:
- 9b7b535, 7655e08, 3fa0181, 9efa5bd
- Parents:
- 6a71113
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
r1a30f05 r4fd211f 2959 2959 2960 2960 if (viewsize==0) { 2961 owl_function_ error("No messages present");2961 owl_function_makemsg("No messages present"); 2962 2962 return; 2963 2963 } … … 2973 2973 /* bounds check */ 2974 2974 if (start>=viewsize || start<0) { 2975 owl_function_ error("No further matches found");2975 owl_function_makemsg("No further matches found"); 2976 2976 return; 2977 2977 } … … 3006 3006 } 3007 3007 owl_mainwin_redisplay(owl_global_get_mainwin(&g)); 3008 owl_function_ error("No matches found");3008 owl_function_makemsg("No matches found"); 3009 3009 } 3010 3010 -
viewwin.c
r237d02c r4fd211f 150 150 151 151 if (!owl_viewwin_search(v, owl_global_get_search_re(&g), consider_current, direction)) 152 owl_function_ error("No more matches");152 owl_function_makemsg("No more matches"); 153 153 return NULL; 154 154 } … … 172 172 if (!owl_viewwin_search(data->v, owl_global_get_search_re(&g), 173 173 consider_current, data->direction)) 174 owl_function_ error("No matches");174 owl_function_makemsg("No matches"); 175 175 } 176 176
Note: See TracChangeset
for help on using the changeset viewer.