(delete-char 2)
(ignore-errors
(forward-char 1)))
+ ;; 1C. \`f' is replaced with a fontified f.
((and (= (following-char) ?`)
(save-excursion
(prog1 (search-forward "'" nil t)
- (setq end-point (- (point) 2)))))
- (goto-char orig-point)
- (delete-char 2)
- (goto-char (1- end-point))
- (delete-char 1)
- ;; (backward-char 1)
- (let ((k (buffer-substring-no-properties orig-point (point))))
- (cond ((= (length k) 0)
- (error "Empty key sequence in substitution"))
- ((and (not (string-match-p "\\`M-x " k))
- (not (key-valid-p k)))
- (error "Invalid key sequence in substitution: `%s'" k))))
- (unless no-face
- (add-text-properties orig-point (point)
- '( face help-key-binding
- font-lock-face help-key-binding))))
- ;; 1C. \[foo] is replaced with the keybinding.
+ (setq end-point (1- (point))))))
+ (let ((k (buffer-substring-no-properties (+ orig-point 2)
+ end-point)))
+ (when (or (key-valid-p k)
+ (string-match-p "\\`M-x " k))
+ (goto-char orig-point)
+ (delete-char 2)
+ (goto-char (- end-point 2)) ; nb. take deletion into account
+ (delete-char 1)
+ (unless no-face
+ (add-text-properties orig-point (point)
+ '( face help-key-binding
+ font-lock-face help-key-binding))))))
+ ;; 1D. \[foo] is replaced with the keybinding.
((and (= (following-char) ?\[)
(save-excursion
(prog1 (search-forward "]" nil t)
(help-mode--add-function-link key fun)
key)
key)))))))
- ;; 1D. \{foo} is replaced with a summary of the keymap
+ ;; 1E. \{foo} is replaced with a summary of the keymap
;; (symbol-value foo).
;; \<foo> just sets the keymap used for \[cmd].
((and (or (and (= (following-char) ?{)
(test "\\`C-m'\\`C-j'" "C-mC-j")
(test "foo\\`C-m'bar\\`C-j'baz" "fooC-mbarC-jbaz")))
-(ert-deftest help-tests-substitute-command-keys/literal-key-sequence-errors ()
- (should-error (substitute-command-keys "\\`'"))
- (should-error (substitute-command-keys "\\`c-c'"))
- (should-error (substitute-command-keys "\\`<foo bar baz>'")))
+(ert-deftest help-tests-substitute-command-keys/literal-key-sequence-ignore-invalid ()
+ "Ignore any invalid literal key sequence."
+ (with-substitute-command-keys-test
+ (test-re "ab\\`'cd" "ab\\\\[`'‘]['’]cd")
+ (test-re "\\`c-c'" "\\\\[`'‘]c-c['’]")
+ (test-re "\\`<foo bar baz>'" "\\\\[`'‘]<foo bar baz>['’]")))
(ert-deftest help-tests-substitute-key-bindings/help-key-binding-face ()
(let ((A (substitute-command-keys "\\[next-line]"))