mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-05 07:41:37 -05:00
Use string-match-p
instead of string-match
This commit is contained in:
parent
bbb677c573
commit
ed793fc183
1 changed files with 1 additions and 1 deletions
|
@ -897,7 +897,7 @@ POS defaults to `point'."
|
|||
|
||||
(defun jupyter-repl-multiline-p (text)
|
||||
"Is TEXT a multi-line string?"
|
||||
(string-match "\n" text))
|
||||
(string-match-p "\n" text))
|
||||
|
||||
(defun jupyter-repl-cell-line-p ()
|
||||
"Is the current line a cell input line?"
|
||||
|
|
Loading…
Add table
Reference in a new issue