summaryrefslogtreecommitdiff
path: root/lib-src/ebrowse.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-08-27 02:36:56 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2015-08-27 02:37:35 -0700
commit2934c21f2d74d9043420db1661704f080718873a (patch)
tree2bfaa56bcfbc431e9815a6bfb28ca93987dca115 /lib-src/ebrowse.c
parent862561f4a642416259ed265ba8c5071cffa4f303 (diff)
downloademacs-2934c21f2d74d9043420db1661704f080718873a.tar.gz
emacs-2934c21f2d74d9043420db1661704f080718873a.tar.bz2
emacs-2934c21f2d74d9043420db1661704f080718873a.zip
Use straight quotes in lib-src diagnostics
These auxiliary programs can’t use Emacs’s text-quoting-style, and it’s too much trouble to redo that mechanism by hand. So just use straight quotes for now. * lib-src/ebrowse.c (main): * lib-src/emacsclient.c (decode_options, main): * lib-src/etags.c (Ada_help, default_C_help, Cplusplus_help) (Forth_help, HTML_help, Lisp_help, Makefile_help, Objc_help) (Perl_help, PHP_help, Python_help, Scheme_help, TeX_help, auto_help) (none_help, print_language_names, print_help, add_regex) (suggest_asking_for_help): * lib-src/make-docfile.c (write_c_args, scan_c_stream): Use straight quotes in diagnostics.
Diffstat (limited to 'lib-src/ebrowse.c')
-rw-r--r--lib-src/ebrowse.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c
index 5c1e9d99bb8..09edc7d3db3 100644
--- a/lib-src/ebrowse.c
+++ b/lib-src/ebrowse.c
@@ -3747,27 +3747,27 @@ main (int argc, char **argv)
fp = fopen (out_filename, "r");
if (fp == NULL)
{
- yyerror ("file `%s' must exist for --append", out_filename);
+ yyerror ("file '%s' must exist for --append", out_filename);
exit (EXIT_FAILURE);
}
rc = fseek (fp, 0, SEEK_END);
if (rc == -1)
{
- yyerror ("error seeking in file `%s'", out_filename);
+ yyerror ("error seeking in file '%s'", out_filename);
exit (EXIT_FAILURE);
}
rc = ftell (fp);
if (rc == -1)
{
- yyerror ("error getting size of file `%s'", out_filename);
+ yyerror ("error getting size of file '%s'", out_filename);
exit (EXIT_FAILURE);
}
else if (rc == 0)
{
- yyerror ("file `%s' is empty", out_filename);
+ yyerror ("file '%s' is empty", out_filename);
/* It may be ok to use an empty file for appending.
exit (EXIT_FAILURE); */
}
@@ -3778,7 +3778,7 @@ main (int argc, char **argv)
yyout = fopen (out_filename, f_append ? "a" : "w");
if (yyout == NULL)
{
- yyerror ("cannot open output file `%s'", out_filename);
+ yyerror ("cannot open output file '%s'", out_filename);
exit (EXIT_FAILURE);
}
}
@@ -3806,7 +3806,7 @@ main (int argc, char **argv)
FILE *fp = fopen (input_filenames[i], "r");
if (fp == NULL)
- yyerror ("cannot open input file `%s'", input_filenames[i]);
+ yyerror ("cannot open input file '%s'", input_filenames[i]);
else
{
char *file;