summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérémie Courrèges-Anglas <jca@wxcvbn.org>2013-04-07 03:32:32 +0200
committerJérémie Courrèges-Anglas <jca@wxcvbn.org>2013-04-07 03:50:26 +0200
commit5e5a2e6339ff7be46001fb18b222bbeededf58ab (patch)
treef2ded8c18d57d697a3a4e99bdd94ea34ecf25b5d
parent2e0d25c2b20f95865d8f6ea5531da74a32f3444d (diff)
downloadratpoison-5e5a2e6339ff7be46001fb18b222bbeededf58ab.zip
More ChangeLog and NEWS entries for upcoming release
-rw-r--r--ChangeLog22
-rw-r--r--NEWS2
2 files changed, 23 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 91cfa97..7a44d16 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,25 @@
+commit 37fc06213b65b9b8ced68f08697608632be91de0
+Author: Jérémie Courrèges-Anglas <jca@wxcvbn.org>
+Date: Sun Apr 7 03:23:50 2013 +0200
+
+ In strtok_ws() use "last", not "pointer" for the static variable
+
+ * since X11/Xdefs.h may define it too. Found by -Wshadow.
+
+ Bonus: "last" carries more meaning.
+
+commit e0714ec506da0a3647e352cf86094446cb6d2b38
+Author: Jérémie Courrèges-Anglas <jca@wxcvbn.org>
+Date: Sun Apr 7 03:07:35 2013 +0200
+
+ Don't use a flexible array member in struct history_item
+
+ * They are a c99 feature, which makes it impossible to build ratpoison
+ on some platforms. GCC supports zero-sized arrays, more conservative
+ approaches say to use foo[1], but as brlink says a compiler with
+ aggressive optimization turned on might play nasty tricks.
+ Just use a traditional struct.
+
commit 340833f5e0c4350ac0c7fc6589a4305014b56ba8
Author: Jérémie Courrèges-Anglas <jca@wxcvbn.org>
Date: Mon Apr 1 13:44:57 2013 +0200
diff --git a/NEWS b/NEWS
index b2024ea..d1b8404 100644
--- a/NEWS
+++ b/NEWS
@@ -12,7 +12,7 @@ notice and this notice are preserved.
Please check out the ChangeLog for more details.
** Build process cleanup
-e.g. detection of getline() was fixed.
+e.g. detection of getline() was fixed, build is ok with old gcc's (2.95)
** ratpoison -c now reports errors ($? != 0)