diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-01-05 23:53:49 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-01-05 23:55:42 -0800 |
commit | 51e801f2f297e45a24004ee6256dd1a6c7389074 (patch) | |
tree | 441ce192f710ff16aac06764e93800934a11ca6d /lib/error.h | |
parent | 04c1ac696211fdbc9b2dcd0790c352ddb0e9402c (diff) | |
download | gnulib-51e801f2f297e45a24004ee6256dd1a6c7389074.tar.gz |
In commentary, do not use ` to quote.
Diffstat (limited to 'lib/error.h')
-rw-r--r-- | lib/error.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/error.h b/lib/error.h index 5bcdf0d70b..9c2cb8bc6a 100644 --- a/lib/error.h +++ b/lib/error.h @@ -35,9 +35,9 @@ extern "C" { #endif -/* Print a message with `fprintf (stderr, FORMAT, ...)'; +/* Print a message with 'fprintf (stderr, FORMAT, ...)'; if ERRNUM is nonzero, follow it with ": " and strerror (ERRNUM). - If STATUS is nonzero, terminate the program with `exit (STATUS)'. */ + If STATUS is nonzero, terminate the program with 'exit (STATUS)'. */ extern void error (int __status, int __errnum, const char *__format, ...) _GL_ATTRIBUTE_FORMAT ((__printf__, 3, 4)); @@ -51,7 +51,7 @@ extern void error_at_line (int __status, int __errnum, const char *__fname, function without parameters instead. */ extern void (*error_print_progname) (void); -/* This variable is incremented each time `error' is called. */ +/* This variable is incremented each time 'error' is called. */ extern unsigned int error_message_count; /* Sometimes we want to have at most one error per line. This |