summaryrefslogtreecommitdiff
path: root/pith/mailindx.c
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2013-11-02 02:51:18 -0600
committerEduardo Chappa <chappa@washington.edu>2013-11-02 02:51:18 -0600
commit7fe712882b909931088a318c08041b0e7974a000 (patch)
tree2770f9b084e2efc7fc55e96e9bf4352cf2ff33a3 /pith/mailindx.c
parentbdfc834badee92ceeb2befe02f1d065ced5b9ddf (diff)
downloadalpine-7fe712882b909931088a318c08041b0e7974a000.tar.xz
* Update to version 2.19.1
* Upgrade UW-IMAP to Panda IMAP from https://github.com/jonabbey/panda-imap. * Replace tabs by spaces in From and Subject fields to control for size in screen of these fields. Change only in index screen display.
Diffstat (limited to 'pith/mailindx.c')
-rw-r--r--pith/mailindx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/pith/mailindx.c b/pith/mailindx.c
index 09cdc2c8..57c9a7ec 100644
--- a/pith/mailindx.c
+++ b/pith/mailindx.c
@@ -5318,6 +5318,7 @@ subj_str(INDEXDATA_S *idata, char *str, size_t strsize, SubjKW kwtype, int openi
iutf8ncpy(origsubj, sp, len);
origsubj[len] = '\0';
+ replace_tabs_by_space(origsubj);
removing_trailing_white_space(origsubj);
/*
@@ -6184,6 +6185,7 @@ from_str(IndexColType ctype, INDEXDATA_S *idata, char *str, size_t strsize, ICE_
break;
}
}
+ replace_tabs_by_space(str);
}