mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -08:00
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.
This commit is contained in:
parent
2f30f8efb8
commit
692cf1013b
5 changed files with 8 additions and 8 deletions
|
|
@ -1336,7 +1336,7 @@ If set will become buffer local.")
|
|||
(define-key map [(control 59)] 'electric-verilog-semi-with-comment)
|
||||
(define-key map ":" 'electric-verilog-colon)
|
||||
;;(define-key map "=" 'electric-verilog-equal)
|
||||
(define-key map "\`" 'electric-verilog-tick)
|
||||
(define-key map "`" 'electric-verilog-tick)
|
||||
(define-key map "\t" 'electric-verilog-tab)
|
||||
(define-key map "\r" 'electric-verilog-terminate-line)
|
||||
;; backspace/delete key bindings
|
||||
|
|
@ -1350,9 +1350,9 @@ If set will become buffer local.")
|
|||
(define-key map "\M-\t" 'verilog-complete-word)
|
||||
(define-key map "\M-?" 'verilog-show-completions)
|
||||
;; Note \C-c and letter are reserved for users
|
||||
(define-key map "\C-c\`" 'verilog-lint-off)
|
||||
(define-key map "\C-c\*" 'verilog-delete-auto-star-implicit)
|
||||
(define-key map "\C-c\?" 'verilog-diff-auto)
|
||||
(define-key map "\C-c`" 'verilog-lint-off)
|
||||
(define-key map "\C-c*" 'verilog-delete-auto-star-implicit)
|
||||
(define-key map "\C-c?" 'verilog-diff-auto)
|
||||
(define-key map "\C-c\C-r" 'verilog-label-be)
|
||||
(define-key map "\C-c\C-i" 'verilog-pretty-declarations)
|
||||
(define-key map "\C-c=" 'verilog-pretty-expr)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue