tweaks: adjust two comments, to be more accurate and general

master
Benno Schulenberg 2018-07-08 17:36:17 +02:00
parent 20971e8392
commit f456794045
1 changed files with 2 additions and 2 deletions

View File

@ -639,7 +639,7 @@ void undo_cut(undo *u)
else
goto_line_posx(u->mark_begin_lineno, u->mark_begin_x);
/* If we cut the magicline, we may as well not crash. :/ */
/* If nothing was actually cut, positioning the cursor was enough. */
if (!u->cutbuffer)
return;
@ -656,7 +656,7 @@ void redo_cut(undo *u)
goto_line_posx(u->lineno, u->begin);
/* If we cut the magicline, we may as well not crash. :/ */
/* If nothing was actually cut, positioning the cursor was enough. */
if (!u->cutbuffer)
return;