Skip to content

Commit 675ca79

Browse files
committed
Fix evil-up-paren for Emacs 31
1 parent b06f644 commit 675ca79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

evil-common.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1355,7 +1355,7 @@ last successful match (that caused COUNT to reach zero)."
13551355
;; Always use the default `forward-sexp-function'. This is important
13561356
;; for modes that use a custom one like `python-mode'.
13571357
;; (addresses #364)
1358-
(let (forward-sexp-function)
1358+
(let (forward-sexp-function up-list-function)
13591359
(with-syntax-table (copy-syntax-table (syntax-table))
13601360
(modify-syntax-entry open (format "(%c" close))
13611361
(modify-syntax-entry close (format ")%c" open))

0 commit comments

Comments
 (0)