Use string-match-p instead of string-match

This commit is contained in:
Nathaniel Nicandro 2018-05-30 22:17:43 -05:00
parent bbb677c573
commit ed793fc183

View file

@ -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?"