fix(lib): void-variable x error in fn!

Amend: 72a8485d77
This commit is contained in:
Henrik Lissner 2022-06-21 23:01:13 +02:00
parent 5519c030ff
commit 1583db5983
No known key found for this signature in database
GPG key ID: B60957CA074D39A3

View file

@ -377,7 +377,7 @@ minus font-locking, the outer function call, and minor optimizations."
sym arglist) sym arglist)
(while (> i 0) (while (> i 0)
(setq sym (aref argv i)) (setq sym (aref argv i))
(unless (and (= n -1) (null x)) (unless (and (= n -1) (null sym))
(cl-incf n) (cl-incf n)
(push (or sym (intern (format "_%%%d" (1+ n)))) (push (or sym (intern (format "_%%%d" (1+ n))))
arglist)) arglist))