Don't embed `this'-style quotes in format strings.
authorJim Meyering <jim@meyering.net>
Thu, 16 Jun 2005 21:39:10 +0000 (21:39 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 16 Jun 2005 21:39:10 +0000 (21:39 +0000)
commit0919e29116ac69b5ef4a647c3f85d0f5ec5445bf
treed1b25786653afb31f9d67affdd40de5e40b4a537
parenta38ee1953f5aabd1bb93fd8479a4e7f191855c31
Don't embed `this'-style quotes in format strings.

Include "quote.h".
Rather than this: error (..., "...`%s'...", arg);
do this:          error (..., "...%s...", quote (arg));
src/fold.c