From: Kevin Day Date: Mon, 23 Nov 2020 03:54:32 +0000 (-0600) Subject: Cleanup: fix comment in featureless make program. X-Git-Tag: 0.5.2~58 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=8c9431f11b3479d64d2302fc0bf5e32f35ca3c7a;p=fll 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. --- 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. *