1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

; flymake-proc.el: move variable declarations

* lisp/progmodes/flymake-proc.el (flymake-proc--temp-source-file-name)
(flymake-proc--temp-master-file-name): Move to before first use.
This commit is contained in:
Mattias Engdegård 2023-09-25 15:16:31 +02:00
parent f616edb4cc
commit 98a1e480c6

View File

@ -607,6 +607,9 @@ Create parent directories as needed."
(process-put proc 'flymake-proc--unprocessed-mark
(point-marker))))))))
(defvar-local flymake-proc--temp-source-file-name nil)
(defvar-local flymake-proc--temp-master-file-name nil)
(defun flymake-proc--process-sentinel (proc _event)
"Sentinel for syntax check buffers."
(let (debug
@ -910,9 +913,7 @@ can also be executed interactively independently of
(file-truename (expand-file-name suffix temp-dir)))
(setq suffix (file-name-directory suffix)))))
(defvar-local flymake-proc--temp-source-file-name nil)
(defvar-local flymake-proc--master-file-name nil)
(defvar-local flymake-proc--temp-master-file-name nil)
(defvar-local flymake-proc--base-dir nil)
(defun flymake-proc-init-create-temp-buffer-copy (create-temp-f)