# # # patch "app_state.cc" # from [19b9781db8070f5278aed5a71e9ceab139a85037] # to [2cab118139f3e81ea0ee3b46b99ff6e4d6714c51] # ============================================================ --- app_state.cc 19b9781db8070f5278aed5a71e9ceab139a85037 +++ app_state.cc 2cab118139f3e81ea0ee3b46b99ff6e4d6714c51 @@ -405,7 +405,7 @@ app_state::set_last(long l) { N(l > 0, - F("negative or zero last not allowed\n")); + F("illegal argument to --last: cannot be zero or negative\n")); last = l; } @@ -413,7 +413,7 @@ app_state::set_next(long l) { N(l > 0, - F("negative or zero next not allowed\n")); + F("illegal argument to --next: cannot be zero or negative\n")); next = l; }