org-compat: Add missing argument to `connection-local-get-profiles'

* lisp/org-compat.el (with-connection-local-variables): Add missing
required argument to the `connection-local-get-profiles' call.

Reported-by: Max Nikulin <manikulin@gmail.com>
Link: https://orgmode.org/list/tk0pjd$ebo$1@ciao.gmane.io
This commit is contained in:
Ihor Radchenko 2022-11-04 10:36:25 +08:00
parent bd468136dd
commit 2924c77848
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ extension beyond end of line was not controllable."
"Apply connection-local variables according to `default-directory'.
Execute BODY, and unwind connection-local variables."
(declare (debug t))
`(with-connection-local-profiles (connection-local-get-profiles)
`(with-connection-local-profiles (connection-local-get-profiles nil)
,@body)))