mirror of
https://github.com/magnars/multiple-cursors.el.git
synced 2025-10-13 05:03:03 +00:00
Fix regression with determining the current sgml context
This problem seems to have been introduced in commit aae47ae by adding "100" as an argument to "looking-back" instead of the correct "1".
This commit is contained in:
parent
72de6a4ec4
commit
c9ea562bd5
@ -669,7 +669,7 @@ If the region is inactive or on a single line, it will behave like
|
||||
(last
|
||||
(progn
|
||||
(when (looking-at "<") (forward-char 1))
|
||||
(when (looking-back ">" 100) (forward-char -1))
|
||||
(when (looking-back ">" 1) (forward-char -1))
|
||||
(sgml-get-context)))))
|
||||
|
||||
(defun mc--on-tag-name-p ()
|
||||
|
Loading…
x
Reference in New Issue
Block a user