aboutsummaryrefslogtreecommitdiff
path: root/evil-common.el
diff options
context:
space:
mode:
authorhiecaq <this@hiecaq.org>2025-11-08 09:18:12 +0800
committerTom Dalziel <33435574+tomdl89@users.noreply.github.com>2025-11-08 02:38:41 +0100
commit729d9a58b387704011a115c9200614e32da3cefc (patch)
tree9aaf9a4791bd81967de87d8e2df6b3eafc704877 /evil-common.el
parentb06f644bdb5b06c6ac46c11b0259f15ac9ffd5da (diff)
Fix evil-up-paren for Emacs 31HEADmaster
Diffstat (limited to 'evil-common.el')
-rw-r--r--evil-common.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/evil-common.el b/evil-common.el
index aaeb8e1..396715c 100644
--- a/evil-common.el
+++ b/evil-common.el
@@ -1355,7 +1355,7 @@ last successful match (that caused COUNT to reach zero)."
;; Always use the default `forward-sexp-function'. This is important
;; for modes that use a custom one like `python-mode'.
;; (addresses #364)
- (let (forward-sexp-function)
+ (let (forward-sexp-function up-list-function)
(with-syntax-table (copy-syntax-table (syntax-table))
(modify-syntax-entry open (format "(%c" close))
(modify-syntax-entry close (format ")%c" open))