From 92c0131b92164caadb5a9247eaf725e53133c837 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Wed, 14 Mar 2012 14:57:33 +0000 Subject: [PATCH] Added nowrap to all date/time attributes SVN revision: 2441 --- src/elogd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/elogd.c b/src/elogd.c index c6402685..4a28a5b5 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -17367,9 +17367,9 @@ void display_line(LOGBOOK * lbs, int message_id, int number, char *mode, int exp my_strftime(str, sizeof(str), format, pts); if (disp_attr_link == NULL || disp_attr_link[index]) - rsprintf("\n%s\n", tdstyle, ref, str); + rsprintf("\n%s\n", tdstyle, nowrap, ref, str); else - rsprintf("\n%s\n", tdstyle, str); + rsprintf("\n%s\n", tdstyle, nowrap, str); } else if (attr_flags[i] & AF_DATETIME) { @@ -17386,9 +17386,9 @@ void display_line(LOGBOOK * lbs, int message_id, int number, char *mode, int exp my_strftime(str, sizeof(str), format, pts); if (disp_attr_link == NULL || disp_attr_link[index]) - rsprintf("\n%s\n", tdstyle, ref, str); + rsprintf("\n%s\n", tdstyle, nowrap, ref, str); else - rsprintf("\n%s\n", tdstyle, str); + rsprintf("\n%s\n", tdstyle, nowrap, str); } else if (attr_flags[i] & AF_ICON) {