summaryrefslogtreecommitdiff
path: root/pico/file.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/file.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/file.c')
-rw-r--r--pico/file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pico/file.c b/pico/file.c
index 26cb34e0..73b9d168 100644
--- a/pico/file.c
+++ b/pico/file.c
@@ -304,8 +304,8 @@ insfile(int f, int n)
char tfname[NLINE];
if(gmode&MDSCUR){
- emlwrite(
- _("\007Restricted mode disallows uploaded command"),
+ emlwwrite(
+ _("Restricted mode disallows uploaded command"),
NULL);
return(0);
}