summaryrefslogtreecommitdiff
path: root/pico/pico.c
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2017-11-20 23:24:58 -0700
committerEduardo Chappa <chappa@washington.edu>2017-11-20 23:24:58 -0700
commit570ada25db406ebe10d6aa454b4466fe47f34ff2 (patch)
treea7ac9f11de1490acfbce7f0ff7178da73cb79dad /pico/pico.c
parent7fae026f633a89911e6be5bd2d7036a9face3557 (diff)
downloadalpine-570ada25db406ebe10d6aa454b4466fe47f34ff2.tar.xz
* Remove bell characted (\007) from status messages in Pico. This makes
it possible to translate them.
Diffstat (limited to 'pico/pico.c')
-rw-r--r--pico/pico.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pico/pico.c b/pico/pico.c
index 9056853a..118a3be2 100644
--- a/pico/pico.c
+++ b/pico/pico.c
@@ -705,7 +705,7 @@ abort_composer(int f, int n)
return(TRUE);
case ABORT:
- emlwrite(_("\007Cancel Cancelled"), NULL);
+ emlwwrite(_("Cancel Cancelled"), NULL);
break;
default:
@@ -746,7 +746,7 @@ wquit(int f, int n)
/* First, make sure there are no outstanding problems */
if(AttachError()){
- emlwrite(_("\007Problem with attachments! Fix errors or delete attachments."), NULL);
+ emlwwrite(_("Problem with attachments! Fix errors or delete attachments."), NULL);
return(FALSE);
}