From 370797a3e264a8fcfaebb3ceaaa55c020ac8b588 Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Mon, 21 Oct 2002 05:03:01 +0000 Subject: [PATCH] Use "Cancel" and "Continue" without spaces. --- edit/editcmd.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/edit/editcmd.c b/edit/editcmd.c index d0eb9c547..f6be6c9a2 100644 --- a/edit/editcmd.c +++ b/edit/editcmd.c @@ -963,7 +963,8 @@ void edit_delete_column_of_text (WEdit * edit) } /* if success return 0 */ -int edit_block_delete (WEdit * edit) +int +edit_block_delete (WEdit *edit) { long count; long start_mark, end_mark; @@ -971,10 +972,16 @@ int edit_block_delete (WEdit * edit) return 0; if (column_highlighting && edit->mark2 < 0) edit_mark_cmd (edit, 0); - if ((end_mark - start_mark) > option_max_undo / 2) -/* Warning message with a query to continue or cancel the operation */ - if (edit_query_dialog2 (_ ("Warning"), _ (" Block is large, you may not be able to undo this action. "), _ (" Continue "), _ (" Cancel "))) + if ((end_mark - start_mark) > option_max_undo / 2) { + /* Warning message with a query to continue or cancel the operation */ + if (edit_query_dialog2 + (_("Warning"), + _ + (" Block is large, you may not be able to undo this action. "), + _("Continue"), _("Cancel"))) { return 1; + } + } edit_push_markers (edit); edit_cursor_move (edit, start_mark - edit->curs1); edit_scroll_screen_over_cursor (edit);