Don't embed `this'-style quotes in format strings.
authorJim Meyering <jim@meyering.net>
Fri, 17 Jun 2005 18:43:24 +0000 (18:43 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 17 Jun 2005 18:43:24 +0000 (18:43 +0000)
commitd96810b0ccedba61f7e5d3abefcc7a8a2b30a8d2
tree8342362bc7fe8e3f6b879c0ecf6ef91bd5f1702d
parentbbe012433f90f798761a47f87d86fc6c4a664215
Don't embed `this'-style quotes in format strings.

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