1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

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.
This commit is contained in:
Paul Eggert 2015-08-27 02:36:56 -07:00
parent 862561f4a6
commit 2934c21f2d
4 changed files with 62 additions and 62 deletions

View file

@ -539,7 +539,7 @@ decode_options (int argc, char **argv)
break;
default:
message (true, "Try `%s --help' for more information\n", progname);
message (true, "Try '%s --help' for more information\n", progname);
exit (EXIT_FAILURE);
break;
}
@ -1611,7 +1611,7 @@ main (int argc, char **argv)
if ((argc - optind < 1) && !eval && current_frame)
{
message (true, "%s: file name or argument required\n"
"Try `%s --help' for more information\n",
"Try '%s --help' for more information\n",
progname, progname);
exit (EXIT_FAILURE);
}