<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From 437a01a44b683a7364e788327046941f75f72928 Mon Sep 17 00:00:00 2001
From: Adam Sampson &lt;ats@offog.org&gt;
Date: Fri, 4 Jul 2025 00:34:54 +0100
Subject: [PATCH 3/6] Don't append a newline to the window title.

---
 xwin.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xwin.c b/xwin.c
index 6b90494..ab0c4f7 100644
--- a/xwin.c
+++ b/xwin.c
@@ -309,7 +309,7 @@ char **argv;
 
 	/* Create the top level Widget */
 	n = 0;
-	XtSetArg(args[n], XtNtitle, "XDU Disk Usage Display ('h' for help)\n"); n++;
+	XtSetArg(args[n], XtNtitle, "XDU Disk Usage Display ('h' for help)"); n++;
 	toplevel = XtAppInitialize(&amp;app_con, "XDu",
 			options, XtNumber(options),
 			argcp, argv,
-- 
2.50.0

</pre></body></html>