mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-16 09:50:25 +00:00
(tit-process-body): Handle `\' used
for quoting the following digits correctly.
This commit is contained in:
parent
1dcf3e0f96
commit
c374d5edd9
@ -281,7 +281,9 @@
|
||||
(setq keyseq
|
||||
(concat (regexp-quote (buffer-substring pos (point))) "[ \t]+"))
|
||||
(save-excursion
|
||||
(while (re-search-backward "[\\\"]" pos t)
|
||||
;; Escape `"' and `\' which is not used for quoting the
|
||||
;; following octal digits.
|
||||
(while (re-search-backward "\"\\|\\\\[^0-9]" pos t)
|
||||
(insert "\\")
|
||||
(forward-char -1)))
|
||||
(insert "\"")
|
||||
|
Loading…
Reference in New Issue
Block a user