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 /admin/charsets/compact.awk | |
| 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 'admin/charsets/compact.awk')
| -rw-r--r-- | admin/charsets/compact.awk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/admin/charsets/compact.awk b/admin/charsets/compact.awk index b7d1fd19d8e..21e03ee4157 100644 --- a/admin/charsets/compact.awk +++ b/admin/charsets/compact.awk | |||
| @@ -69,7 +69,7 @@ function decode_hex(str, idx) { | |||
| 69 | return n; | 69 | return n; |
| 70 | } | 70 | } |
| 71 | 71 | ||
| 72 | /^\#/ { | 72 | /^#/ { |
| 73 | print; | 73 | print; |
| 74 | next; | 74 | next; |
| 75 | } | 75 | } |
| @@ -119,4 +119,3 @@ END { | |||
| 119 | printf "0x%04X-0x%04X 0x%04X\n", from_code, to_code, from_unicode; | 119 | printf "0x%04X-0x%04X 0x%04X\n", from_code, to_code, from_unicode; |
| 120 | } | 120 | } |
| 121 | } | 121 | } |
| 122 | |||