diff options
| author | Paul Eggert | 2015-08-15 08:35:02 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-08-15 08:35:36 -0700 |
| commit | 692cf1013b8354f9f7a17ebb5e6e39b76ddce414 (patch) | |
| tree | bfd2e16af2a1ef3af84069c04a0f168e8dae4286 /admin | |
| parent | 2f30f8efb8e311c5fcd6c9d896bad5b6f703c3f1 (diff) | |
| download | emacs-692cf1013b8354f9f7a17ebb5e6e39b76ddce414.tar.gz emacs-692cf1013b8354f9f7a17ebb5e6e39b76ddce414.zip | |
Fix "\`" confusion in Lisp strings
* admin/authors.el (authors-canonical-author-name):
Fix typo by using "\\`" not "\`" in string RE.
* lisp/obsolete/complete.el (PC-complete-as-file-name):
* lisp/obsolete/vi.el (vi-backward-blank-delimited-word):
* lisp/progmodes/verilog-mode.el (verilog-mode-map):
Use plain "`", not the equivalent-but-confusing "\`", in strings.
* lisp/textmodes/texinfmt.el: Fix comment likewise.
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/authors.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/authors.el b/admin/authors.el index c7ec3bcfdd6..547e046a8d7 100644 --- a/admin/authors.el +++ b/admin/authors.el | |||
| @@ -1154,7 +1154,7 @@ it is found in `authors-fixed-case'." | |||
| 1154 | (setq regexps (cdr regexps)))))) | 1154 | (setq regexps (cdr regexps)))))) |
| 1155 | (when author | 1155 | (when author |
| 1156 | (setq author (replace-regexp-in-string "[ \t]*[(<].*$" "" author)) | 1156 | (setq author (replace-regexp-in-string "[ \t]*[(<].*$" "" author)) |
| 1157 | (setq author (replace-regexp-in-string "\`[ \t]+" "" author)) | 1157 | (setq author (replace-regexp-in-string "\\`[ \t]+" "" author)) |
| 1158 | (setq author (replace-regexp-in-string "[ \t]+$" "" author)) | 1158 | (setq author (replace-regexp-in-string "[ \t]+$" "" author)) |
| 1159 | (setq author (replace-regexp-in-string "[ \t]+" " " author)) | 1159 | (setq author (replace-regexp-in-string "[ \t]+" " " author)) |
| 1160 | (unless (string-match "[-, \t]" author) | 1160 | (unless (string-match "[-, \t]" author) |