org.el: Fix missing arg in string-match-p call

* lisp/org.el (org-display-inline-image--width): `string-match-p'
requires two arguments, but the second one was missing.
This commit is contained in:
Matt Huszagh 2021-11-22 21:38:51 -08:00 committed by TEC
parent 27f26f7829
commit 912cf21494
Signed by: tec
GPG Key ID: 779591AFDB81F06C
1 changed files with 1 additions and 1 deletions

View File

@ -16867,7 +16867,7 @@ buffer boundaries with possible narrowing."
((string= attr-width "t") nil)
;; Fallback to `org-image-actual-width' if no interprable width is given.
((or (null attr-width)
(string-match-p "\\`[^0-9]"))
(string-match-p "\\`[^0-9]" attr-width))
(car org-image-actual-width))
;; Convert numeric widths to numbers, converting percentages.
((string-match-p "\\`[0-9.]+%" attr-width)