Don't embed `this'-style quotes in format strings.
authorJim Meyering <jim@meyering.net>
Thu, 16 Jun 2005 21:38:27 +0000 (21:38 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 16 Jun 2005 21:38:27 +0000 (21:38 +0000)
commita38ee1953f5aabd1bb93fd8479a4e7f191855c31
treead9e6c394ba788765e436f712795e515af14631e
parentf696c57a8ee46a7df82f860275b88fb329740e69
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/printf.c