Don't embed `this'-style quotes in format strings.
authorJim Meyering <jim@meyering.net>
Thu, 16 Jun 2005 21:40:43 +0000 (21:40 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 16 Jun 2005 21:40:43 +0000 (21:40 +0000)
commit0cda9b5eb8a8b9e297a95817f02bda12c21de94e
tree0ace2a127ae621ac11cd4e66a8285c9915bcb5c5
parent0919e29116ac69b5ef4a647c3f85d0f5ec5445bf
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/cat.c