]> git.eshelyaron.com Git - emacs.git/commitdiff
; flymake-proc.el: move variable declarations
authorMattias Engdegård <mattiase@acm.org>
Mon, 25 Sep 2023 13:16:31 +0000 (15:16 +0200)
committerMattias Engdegård <mattiase@acm.org>
Mon, 25 Sep 2023 13:16:31 +0000 (15:16 +0200)
* lisp/progmodes/flymake-proc.el (flymake-proc--temp-source-file-name)
(flymake-proc--temp-master-file-name): Move to before first use.

lisp/progmodes/flymake-proc.el

index f640e7f32bfab781cf22a33484c46cbce967c60d..2e9c28a92d54dc0716b0969ca447701a14f0e632 100644 (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)