summaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2016-11-17 15:07:14 -0800
committerKevin McCarthy <kevin@8t8.us>2016-11-17 15:07:14 -0800
commit2f4d02d95e9a8ff54edf1d1b16f886afc50527ba (patch)
tree561d188168e48714d977085f99d75477b1fd890d /commands.c
parentd23f981d2aa4d7053c5b1e93d3f66689cbba9d21 (diff)
Backout inlining of MUTT_VERSION in 42fee7585fae.
If MUTT_VERSION contains a %, this will result in problems.
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands.c b/commands.c
index 42436231..2202a673 100644
--- a/commands.c
+++ b/commands.c
@@ -879,7 +879,7 @@ int mutt_save_message (HEADER *h, int delete,
void mutt_version (void)
{
- mutt_message ("Mutt " MUTT_VERSION " (%s)", ReleaseDate);
+ mutt_message ("Mutt %s (%s)", MUTT_VERSION, ReleaseDate);
}
void mutt_edit_content_type (HEADER *h, BODY *b, FILE *fp)