summaryrefslogtreecommitdiff
path: root/lib/xstrtol.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-01-05 23:53:49 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2012-01-05 23:55:42 -0800
commit51e801f2f297e45a24004ee6256dd1a6c7389074 (patch)
tree441ce192f710ff16aac06764e93800934a11ca6d /lib/xstrtol.c
parent04c1ac696211fdbc9b2dcd0790c352ddb0e9402c (diff)
downloadgnulib-51e801f2f297e45a24004ee6256dd1a6c7389074.tar.gz
In commentary, do not use ` to quote.
Diffstat (limited to 'lib/xstrtol.c')
-rw-r--r--lib/xstrtol.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/xstrtol.c b/lib/xstrtol.c
index acd44d3ae6..7c4fbd87b8 100644
--- a/lib/xstrtol.c
+++ b/lib/xstrtol.c
@@ -126,9 +126,9 @@ __xstrtol (const char *s, char **ptr, int strtol_base,
err = LONGINT_OVERFLOW;
}
- /* Let valid_suffixes == NULL mean `allow any suffix'. */
+ /* Let valid_suffixes == NULL mean "allow any suffix". */
/* FIXME: update all callers except the ones that allow suffixes
- after the number, changing last parameter NULL to `""'. */
+ after the number, changing last parameter NULL to "". */
if (!valid_suffixes)
{
*val = tmp;
@@ -149,7 +149,7 @@ __xstrtol (const char *s, char **ptr, int strtol_base,
if (strchr (valid_suffixes, '0'))
{
- /* The ``valid suffix'' '0' is a special flag meaning that
+ /* The "valid suffix" '0' is a special flag meaning that
an optional second suffix is allowed, which can change
the base. A suffix "B" (e.g. "100MB") stands for a power
of 1000, whereas a suffix "iB" (e.g. "100MiB") stands for