diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-09-16 16:06:29 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-09-16 16:07:15 -0700 |
commit | e56096dbb9560b558f74d2b21e21659e221b914c (patch) | |
tree | 90c280db9f383031d44b95cf972357019926c9a1 /admin/charsets | |
parent | dc436dd77f70dbc2e294a1fd2d69a332f1413fa5 (diff) | |
download | emacs-e56096dbb9560b558f74d2b21e21659e221b914c.tar.gz emacs-e56096dbb9560b558f74d2b21e21659e221b914c.tar.bz2 emacs-e56096dbb9560b558f74d2b21e21659e221b914c.zip |
Minor quoting fixes in scripts and doc
Prefer straight quotes in random script files, as they are not converted.
Prefer grave quotes in a couple of places in the manual that were missed
earlier, as these quotes are converted.
Diffstat (limited to 'admin/charsets')
-rw-r--r-- | admin/charsets/eucjp-ms.awk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/admin/charsets/eucjp-ms.awk b/admin/charsets/eucjp-ms.awk index 59c6388b25c..24152b44eff 100644 --- a/admin/charsets/eucjp-ms.awk +++ b/admin/charsets/eucjp-ms.awk @@ -24,7 +24,7 @@ # http://home.m05.itscom.net/numa/cde/ucs-conv/appendix.html # This program reads the mapping file EUC-JP-MS (of glibc) and # generates the Elisp file eucjp-ms.el that defines two translation -# tables `eucjp-ms-decode' and `eucjp-ms-encode'. +# tables 'eucjp-ms-decode' and 'eucjp-ms-encode'. BEGIN { FS = "[ \t][ \t]*" @@ -109,4 +109,3 @@ END { print ""; print "(provide 'eucjp-ms)"; } - |