Don't embed `this'-style quotes in format strings.
authorJim Meyering <jim@meyering.net>
Thu, 16 Jun 2005 21:44:25 +0000 (21:44 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 16 Jun 2005 21:44:25 +0000 (21:44 +0000)
commitc95fdb837288fd304217de84b319cabb8dffadbb
tree16a30c3412de7598bf52375685ec57d6e810ad92
parentf682977c0cce43713d0e4a112fc3dbb4fa58d013
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/factor.c
src/stty.c