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 /lib-src | |
| 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 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index a175967156a..2b65cb2e1a9 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -24,7 +24,7 @@ SHELL = @SHELL@ | |||
| 24 | EMACS = ../src/emacs${EXEEXT} | 24 | EMACS = ../src/emacs${EXEEXT} |
| 25 | EMACSOPT = -batch --no-site-file --no-site-lisp | 25 | EMACSOPT = -batch --no-site-file --no-site-lisp |
| 26 | 26 | ||
| 27 | # ==================== Things `configure' will edit ==================== | 27 | # ==================== Things 'configure' will edit ==================== |
| 28 | 28 | ||
| 29 | CC=@CC@ | 29 | CC=@CC@ |
| 30 | CFLAGS=@CFLAGS@ | 30 | CFLAGS=@CFLAGS@ |
| @@ -83,31 +83,31 @@ ns_appbindir=@ns_appbindir@ | |||
| 83 | # subdirectories of this directory. The default values for many of | 83 | # subdirectories of this directory. The default values for many of |
| 84 | # the variables below are expressed in terms of this one, so you may | 84 | # the variables below are expressed in terms of this one, so you may |
| 85 | # not need to change them. This is set with the --prefix option to | 85 | # not need to change them. This is set with the --prefix option to |
| 86 | # `../configure'. | 86 | # '../configure'. |
| 87 | prefix=@prefix@ | 87 | prefix=@prefix@ |
| 88 | 88 | ||
| 89 | # Like `prefix', but used for architecture-specific files. This is | 89 | # Like 'prefix', but used for architecture-specific files. This is |
| 90 | # set with the --exec-prefix option to `../configure'. | 90 | # set with the --exec-prefix option to '../configure'. |
| 91 | exec_prefix=@exec_prefix@ | 91 | exec_prefix=@exec_prefix@ |
| 92 | 92 | ||
| 93 | # Where to install Emacs and other binaries that people will want to | 93 | # Where to install Emacs and other binaries that people will want to |
| 94 | # run directly (like etags). This is set with the --bindir option | 94 | # run directly (like etags). This is set with the --bindir option |
| 95 | # to `../configure'. | 95 | # to '../configure'. |
| 96 | bindir=@bindir@ | 96 | bindir=@bindir@ |
| 97 | 97 | ||
| 98 | # Where to install and expect executable files to be run by Emacs | 98 | # Where to install and expect executable files to be run by Emacs |
| 99 | # rather than directly by users, and other architecture-dependent | 99 | # rather than directly by users, and other architecture-dependent |
| 100 | # data. ${archlibdir} is usually below this. This is set with the | 100 | # data. ${archlibdir} is usually below this. This is set with the |
| 101 | # --libexecdir option to `../configure'. | 101 | # --libexecdir option to '../configure'. |
| 102 | libexecdir=@libexecdir@ | 102 | libexecdir=@libexecdir@ |
| 103 | 103 | ||
| 104 | # Directory for local state files for all programs. | 104 | # Directory for local state files for all programs. |
| 105 | localstatedir=@localstatedir@ | 105 | localstatedir=@localstatedir@ |
| 106 | 106 | ||
| 107 | # Where to find the source code. This is set by the configure | 107 | # Where to find the source code. This is set by the configure |
| 108 | # script's `--srcdir' option. However, the value of ${srcdir} in | 108 | # script's '--srcdir' option. However, the value of ${srcdir} in |
| 109 | # this makefile is not identical to what was specified with --srcdir, | 109 | # this makefile is not identical to what was specified with --srcdir, |
| 110 | # since the variable here has `/lib-src' added at the end. | 110 | # since the variable here has '/lib-src' added at the end. |
| 111 | 111 | ||
| 112 | # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH. | 112 | # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH. |
| 113 | srcdir=@srcdir@ | 113 | srcdir=@srcdir@ |
| @@ -127,7 +127,7 @@ abs_top_srcdir=@abs_top_srcdir@ | |||
| 127 | # This path usually includes the Emacs version and configuration name, | 127 | # This path usually includes the Emacs version and configuration name, |
| 128 | # so that multiple configurations for multiple versions of Emacs may | 128 | # so that multiple configurations for multiple versions of Emacs may |
| 129 | # be installed at once. This can be set with the --archlibdir option | 129 | # be installed at once. This can be set with the --archlibdir option |
| 130 | # to `../configure'. | 130 | # to '../configure'. |
| 131 | archlibdir=@archlibdir@ | 131 | archlibdir=@archlibdir@ |
| 132 | 132 | ||
| 133 | gamedir=@gamedir@ | 133 | gamedir=@gamedir@ |