cutting: do nothing when trying to chop a word leftward at start of file
Instead of marking the buffer as modified, provide the feedback that
"nothing was cut", like when trying to chop a word rightward at the
end of the buffer.
This fixes https://savannah.gnu.org/bugs/?57015.
Bug existed since version 4.4, commit 4314b8de
.
master
parent
f813fd0f4d
commit
53d4224be9
|
@ -194,6 +194,9 @@ void chop_word(bool forward)
|
||||||
/* Delete a word leftward. */
|
/* Delete a word leftward. */
|
||||||
void chop_previous_word(void)
|
void chop_previous_word(void)
|
||||||
{
|
{
|
||||||
|
if (openfile->current->prev == NULL && openfile->current_x == 0)
|
||||||
|
statusbar(_("Nothing was cut"));
|
||||||
|
else
|
||||||
chop_word(BACKWARD);
|
chop_word(BACKWARD);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue