mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-05 23:41:38 -05:00
jupyter-repl-initialize-fontification: Use regexp-quote
This commit is contained in:
parent
109ee2cce5
commit
675bfb0a38
1 changed files with 1 additions and 1 deletions
|
@ -1559,7 +1559,7 @@ using `jupyter-repl-propertize-output'."
|
|||
(when comment
|
||||
(setq jupyter-repl-propertize-regex
|
||||
(concat jupyter-repl-propertize-regex
|
||||
"\\|" (string-trim comment)))))
|
||||
"\\|" (regexp-quote (string-trim comment))))))
|
||||
(font-lock-mode)))
|
||||
|
||||
(defun jupyter-repl-insert-banner (banner)
|
||||
|
|
Loading…
Add table
Reference in a new issue