Pino Toscano, le Fri 01 Mar 2013 16:27:03 +0100, a écrit : > Side question: do we have git hooks to automatically close bugs and > tasks with commits?
I don't know. > + newval = *(equal + 1) != 0 ? equal + 1 : ""; Why checking against *(equal+1) == 0 ? using equal+1 in the == 0 case will also make newval point to an empty string. Samuel