Changeset 4fd211f for viewwin.c


Ignore:
Timestamp:
Apr 3, 2011, 4:00:04 PM (13 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10, release-1.8, release-1.9
Children:
9b7b535, 7655e08, 3fa0181, 9efa5bd
Parents:
6a71113
Message:
Use owl_function_makemsg to report no search matches

It's not really an error; certainly not something that should end up in
the error log.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • viewwin.c

    r237d02c r4fd211f  
    150150
    151151  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");
    153153  return NULL;
    154154}
     
    172172  if (!owl_viewwin_search(data->v, owl_global_get_search_re(&g),
    173173                          consider_current, data->direction))
    174     owl_function_error("No matches");
     174    owl_function_makemsg("No matches");
    175175}
    176176
Note: See TracChangeset for help on using the changeset viewer.