diff options
| author | Paul Eggert | 2015-09-16 15:52:09 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-16 15:59:13 -0700 |
| commit | dc436dd77f70dbc2e294a1fd2d69a332f1413fa5 (patch) | |
| tree | 84ba3af906962c65120fa1194b6908127d1a86a4 /Makefile.in | |
| parent | 8865587c55f251ac624e6730505de66d15b28562 (diff) | |
| download | emacs-dc436dd77f70dbc2e294a1fd2d69a332f1413fa5.tar.gz emacs-dc436dd77f70dbc2e294a1fd2d69a332f1413fa5.zip | |
Minor backslash fixes in manuals and scripts
* Makefile.in (install-arch-indep):
* admin/charsets/compact.awk:
* admin/charsets/gb180302.awk (gb_to_index):
* admin/charsets/gb180304.awk (gb_to_index):
Avoid undefined behavior in Awk regular expression backslashes.
* doc/misc/efaq.texi (Matching parentheses):
Omit unnecessary backslashes.
* doc/misc/gnus-faq.texi (FAQ 5-8):
Avoid undefined behavior in suggested sed backslash usage.
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 3cfbe5704ff..4ee84f96ad6 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -593,8 +593,8 @@ install-arch-indep: lisp install-info install-man ${INSTALL_ARCH_INDEP_EXTRA} | |||
| 593 | rm -f $${subdir}/.gitignore ; \ | 593 | rm -f $${subdir}/.gitignore ; \ |
| 594 | rm -f $${subdir}/.arch-inventory ; \ | 594 | rm -f $${subdir}/.arch-inventory ; \ |
| 595 | rm -f $${subdir}/.DS_Store ; \ | 595 | rm -f $${subdir}/.DS_Store ; \ |
| 596 | rm -f $${subdir}/\#* ; \ | 596 | rm -f $${subdir}/#* ; \ |
| 597 | rm -f $${subdir}/.\#* ; \ | 597 | rm -f $${subdir}/.#* ; \ |
| 598 | rm -f $${subdir}/*~ ; \ | 598 | rm -f $${subdir}/*~ ; \ |
| 599 | rm -f $${subdir}/*.orig ; \ | 599 | rm -f $${subdir}/*.orig ; \ |
| 600 | rm -f $${subdir}/ChangeLog* ; \ | 600 | rm -f $${subdir}/ChangeLog* ; \ |