; * lisp/nxml/xmltok.el (xmltok-scan-attributes): Fix last change
This commit is contained in:
parent
33a2670368
commit
11592bcfda
1 changed files with 1 additions and 1 deletions
|
@ -738,7 +738,7 @@ and VALUE-END, otherwise a STRING giving the value."
|
|||
;; avoid slowdowns due to the quadratic
|
||||
;; complexity of the regexp. See bug#61514.
|
||||
(when (with-restriction
|
||||
(point) (+ (point) 10000)
|
||||
(point) (min (+ (point) 10000) (point-max))
|
||||
(looking-at (concat "[^<>\n]+?"
|
||||
(xmltok-attribute regexp))))
|
||||
(unless recovering
|
||||
|
|
Loading…
Add table
Reference in a new issue