From 7f8ead763f83d5b54ad71a94a9720204670c7ddb Mon Sep 17 00:00:00 2001 From: theraven Date: Fri, 31 Dec 2010 14:06:33 +0000 Subject: [PATCH] Actually add ChangeLog from last commit. Make mkchlog.sh show the changelog so I can check that it actually worked... git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31806 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 8 ++++++++ Tools/mkchlog.sh | 1 + 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index cf2f7991e..b84375127 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2010-12-31 14:03 David Chisnall + + * libs/base/trunk/Headers/Foundation/NSBundle.h: Add __attribute__ + ((format_arg)) to [NSBundle -localizedStringForKey:value:table:]. + This informs the compiler that the output can be used anywhere + that the first argument can be used, and should silence all of + the non-constant format string warnings that we get anywhere that + _(@"foo") or similar is used. 2010-12-27 Nicola Pero diff --git a/Tools/mkchlog.sh b/Tools/mkchlog.sh index 382941d26..3e4da8d75 100644 --- a/Tools/mkchlog.sh +++ b/Tools/mkchlog.sh @@ -2,4 +2,5 @@ svn log -rPREV --xml --verbose | xsltproc /usr/local/share/svn2cl/svn2cl.xsl - > ChangeLog.new cat ChangeLog >> ChangeLog.new mv ChangeLog.new ChangeLog +$EDITOR ChangeLog svn commit -m 'Added ChangeLog entry from last commit'