diff options
| author | Paul Eggert | 2015-09-16 16:06:29 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-16 16:07:15 -0700 |
| commit | e56096dbb9560b558f74d2b21e21659e221b914c (patch) | |
| tree | 90c280db9f383031d44b95cf972357019926c9a1 /admin | |
| parent | dc436dd77f70dbc2e294a1fd2d69a332f1413fa5 (diff) | |
| download | emacs-e56096dbb9560b558f74d2b21e21659e221b914c.tar.gz 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')
| -rw-r--r-- | admin/charsets/eucjp-ms.awk | 3 | ||||
| -rw-r--r-- | admin/coccinelle/vector_contents.cocci | 2 | ||||
| -rwxr-xr-x | admin/make-emacs | 2 |
3 files changed, 3 insertions, 4 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 @@ | |||
| 24 | # http://home.m05.itscom.net/numa/cde/ucs-conv/appendix.html | 24 | # http://home.m05.itscom.net/numa/cde/ucs-conv/appendix.html |
| 25 | # This program reads the mapping file EUC-JP-MS (of glibc) and | 25 | # This program reads the mapping file EUC-JP-MS (of glibc) and |
| 26 | # generates the Elisp file eucjp-ms.el that defines two translation | 26 | # generates the Elisp file eucjp-ms.el that defines two translation |
| 27 | # tables `eucjp-ms-decode' and `eucjp-ms-encode'. | 27 | # tables 'eucjp-ms-decode' and 'eucjp-ms-encode'. |
| 28 | 28 | ||
| 29 | BEGIN { | 29 | BEGIN { |
| 30 | FS = "[ \t][ \t]*" | 30 | FS = "[ \t][ \t]*" |
| @@ -109,4 +109,3 @@ END { | |||
| 109 | print ""; | 109 | print ""; |
| 110 | print "(provide 'eucjp-ms)"; | 110 | print "(provide 'eucjp-ms)"; |
| 111 | } | 111 | } |
| 112 | |||
diff --git a/admin/coccinelle/vector_contents.cocci b/admin/coccinelle/vector_contents.cocci index 3c696ffd237..10b01f2bbd4 100644 --- a/admin/coccinelle/vector_contents.cocci +++ b/admin/coccinelle/vector_contents.cocci | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | // Avoid direct access to `contents' member of | 1 | // Avoid direct access to 'contents' member of |
| 2 | // Lisp_Vector, use AREF and ASET where possible. | 2 | // Lisp_Vector, use AREF and ASET where possible. |
| 3 | @expression@ | 3 | @expression@ |
| 4 | identifier I1, I2; | 4 | identifier I1, I2; |
diff --git a/admin/make-emacs b/admin/make-emacs index f0c5370496e..24e9844b72c 100755 --- a/admin/make-emacs +++ b/admin/make-emacs | |||
| @@ -100,7 +100,7 @@ chdir $root if cwd () eq "/"; | |||
| 100 | chdir "./src"; | 100 | chdir "./src"; |
| 101 | print "Build in ", cwd (), "\n"; | 101 | print "Build in ", cwd (), "\n"; |
| 102 | 102 | ||
| 103 | # If first arg is `all' or if `--all' specified, ensure a clean | 103 | # If first arg is 'all' or if '--all' specified, ensure a clean |
| 104 | # build. | 104 | # build. |
| 105 | 105 | ||
| 106 | if (@ARGV && $ARGV[0] eq "all") | 106 | if (@ARGV && $ARGV[0] eq "all") |