summaryrefslogtreecommitdiff
path: root/variable.h
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2012-03-04 00:24:20 +0000
committerPaul Smith <psmith@gnu.org>2012-03-04 00:24:20 +0000
commit23c2b99e9d23e726ede9442728272616e66d416f (patch)
tree80b69e1fde31e8c4a39ee43b57546a06f77de353 /variable.h
parent405c89ba1e33e013f7e582e28f969fc3f39b9b2c (diff)
downloadgunmake-23c2b99e9d23e726ede9442728272616e66d416f.tar.gz
Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines.
Fixes Savannah bug #34530.
Diffstat (limited to 'variable.h')
-rw-r--r--variable.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/variable.h b/variable.h
index 1fe3d1e..410c355 100644
--- a/variable.h
+++ b/variable.h
@@ -27,7 +27,7 @@ enum variable_origin
o_file, /* Variable given in a makefile. */
o_env_override, /* Variable from environment, if -e. */
o_command, /* Variable given by user. */
- o_override, /* Variable from an `override' directive. */
+ o_override, /* Variable from an 'override' directive. */
o_automatic, /* Automatic variable -- cannot be set. */
o_invalid /* Core dump time. */
};
@@ -44,7 +44,7 @@ enum variable_flavor
/* Structure that represents one variable definition.
Each bucket of the hash table is a chain of these,
- chained through `next'. */
+ chained through 'next'. */
#define EXP_COUNT_BITS 15 /* This gets all the bitfields into 32 bits */
#define EXP_COUNT_MAX ((1<<EXP_COUNT_BITS)-1)
@@ -223,7 +223,7 @@ void undefine_variable_in_set (const char *name, unsigned int length,
#define warn_undefined(n,l) do{\
if (warn_undefined_variables_flag) \
error (reading_file, \
- _("warning: undefined variable `%.*s'"), \
+ _("warning: undefined variable '%.*s'"), \
(int)(l), (n)); \
}while(0)