From 8c9431f11b3479d64d2302fc0bf5e32f35ca3c7a Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 22 Nov 2020 21:54:32 -0600 Subject: [PATCH] Cleanup: fix comment in featureless make program. Add a @fixme for UTF-8 because I noticed that I was not using UTF-8 character support. If environment variables should only be ASCII, update the documentation to better reflect this. --- level_3/fake/c/private-make.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/level_3/fake/c/private-make.h b/level_3/fake/c/private-make.h index 4acebfb..4a69b02 100644 --- a/level_3/fake/c/private-make.h +++ b/level_3/fake/c/private-make.h @@ -764,10 +764,12 @@ extern "C" { /** * Validate that the given define variable name is valid. * - * A valid define variable name mst begin with an alpha-character or an underscore. + * A valid define variable name must begin with an alpha-character or an underscore. * Every character after that may be alphanumeric or underscore. * All other characters, including Unicode characters, are invalid. * + * @fixme make this UTF-8 friendly. + * * @param name * The variable name string to validate. * -- 1.8.3.1