summaryrefslogtreecommitdiffstats
path: root/addrbook.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-08-27 19:37:10 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-08-27 19:37:10 +0000
commit31beda39930d293e1331505d138ad5fae7bdbc4f (patch)
tree0d7272b0159c0acc7ef3caf7b631a8427724926d /addrbook.c
parentb6a56b307a101a1ed78cf1a644ec32a27a509d29 (diff)
[patch-0.94.4i.gt.arrowcursor.1] Padding to the end of
line/right jusitifying does not work in menus when $arrow_cursor is set, because the extra space needed for the arrow is not taken into account. (From Gero Treuner <gero@faveve.uni-stuttgart.de>)
Diffstat (limited to 'addrbook.c')
-rw-r--r--addrbook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addrbook.c b/addrbook.c
index 9334796b..f589079a 100644
--- a/addrbook.c
+++ b/addrbook.c
@@ -80,7 +80,7 @@ int alias_search (MUTTMENU *m, regex_t *re, int n)
void alias_entry (char *s, size_t slen, MUTTMENU *m, int num)
{
- mutt_FormatString (s, slen, NONULL (AliasFmt), alias_format_str, (unsigned long) ((ALIAS **) m->data)[num], 0);
+ mutt_FormatString (s, slen, NONULL (AliasFmt), alias_format_str, (unsigned long) ((ALIAS **) m->data)[num], M_FORMAT_ARROWCURSOR);
}
int alias_tag (MUTTMENU *menu, int n)