Commands returning Efail cause warning messages. We don't want that
just for reaching end of file. So return Efalse instead.
Signed-off-by: NeilBrown <neil@brown.name>
- [ ] when add address to a query in notmuch, reassess the current
query. Maybe don't reload, but make sure that next reload will
used updated query.
-- [ ] get too many Failed:: C-N C-P Up C-R history:C-R A-!
+- [X] get too many Failed:: C-N C-P Up C-R history:C-R A-!
Maybe these should return Efalse, not Efail
### Small
num = RPT_NUM(ci);
if (call("doc:EOL", ci->focus, num, m, NULL, 1) <= 0) {
rl->i_moved = 0;
- return Efail;
+ return Efalse;
}
if (RPT_NUM(ci) < 0) {
/* at end of target line, move to start */
if (call("doc:EOL", ci->focus, -1, m) <= 0) {
rl->i_moved = 0;
- return Efail;
+ return Efalse;
}
}