branch: externals/auctex-cont-latexmk
commit c2069da6b9e5534a3e4eb2d3f2abdfdfd1a7d395
Author: Paul Nelson <ultr...@gmail.com>
Commit: Paul Nelson <ultr...@gmail.com>

    reduce "sit-for" time
---
 czm-tex-compile.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/czm-tex-compile.el b/czm-tex-compile.el
index 7c2a81c1f4..72d6db3a0a 100644
--- a/czm-tex-compile.el
+++ b/czm-tex-compile.el
@@ -68,7 +68,7 @@
           (user-error "Buffer name does not match expected pattern"))
         (when (process-live-p czm-tex-compile-process)
           (interrupt-process czm-tex-compile-process)
-          (sit-for 1)
+          (sit-for 0.1)
           (delete-process czm-tex-compile-process))
         (setq czm-tex-compile--compilation-buffer-name (concat 
"*czm-tex-compile-" name "*"))
         (let ((command (concat czm-tex-compile-command " " name ".tex")))
@@ -107,7 +107,7 @@
   "Kill the LaTeX compilation process associated with the buffer."
   (when (process-live-p czm-tex-compile-process)
     (interrupt-process czm-tex-compile-process)
-    (sit-for 1)
+    (sit-for 0.1)
     (delete-process czm-tex-compile-process))
   (when (get-buffer czm-tex-compile--compilation-buffer-name)
     (kill-buffer czm-tex-compile--compilation-buffer-name)))

Reply via email to