Don't embed `this'-style quotes in format strings.
authorJim Meyering <jim@meyering.net>
Thu, 16 Jun 2005 21:37:37 +0000 (21:37 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 16 Jun 2005 21:37:37 +0000 (21:37 +0000)
commitf696c57a8ee46a7df82f860275b88fb329740e69
tree37bbda4d602d8d9a910f7a1af5bf3eb957640184
parentf07a234d1d0fad264b2e3653223740a25fc964f5
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/expr.c