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 /lisp/textmodes | |
| 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 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/texinfmt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index e1259ff94f6..8e4a7e9186d 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el | |||
| @@ -3127,7 +3127,7 @@ Default is to leave paragraph indentation as is." | |||
| 3127 | ;; (put '\` 'texinfo-format 'texinfo-format-grave-accent) | 3127 | ;; (put '\` 'texinfo-format 'texinfo-format-grave-accent) |
| 3128 | ;; (defun texinfo-format-grave-accent () | 3128 | ;; (defun texinfo-format-grave-accent () |
| 3129 | ;; (texinfo-discard-command) | 3129 | ;; (texinfo-discard-command) |
| 3130 | ;; (insert "\`")) | 3130 | ;; (insert "`")) |
| 3131 | ;; | 3131 | ;; |
| 3132 | ;; @' ==> ' acute accent | 3132 | ;; @' ==> ' acute accent |
| 3133 | ;; (put '\' 'texinfo-format 'texinfo-format-acute-accent) | 3133 | ;; (put '\' 'texinfo-format 'texinfo-format-acute-accent) |