summaryrefslogtreecommitdiff
path: root/pico/fileio.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/fileio.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/fileio.c')
-rw-r--r--pico/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pico/fileio.c b/pico/fileio.c
index 91eacf9d..f0a3ddc2 100644
--- a/pico/fileio.c
+++ b/pico/fileio.c
@@ -73,7 +73,7 @@ ffputline(CELL buf[], int nbuf)
if(ferror(g_pico_fio.fp)){
eml.s = errstr(errno);
- emlwrite("\007Write error: %s", &eml);
+ emlwwrite(_("Write error: %s"), &eml);
sleep(5);
return FIOERR;
}