[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/auctex-cont-latexmk 6a9518e566 097/100: indentation, sw
From: |
ELPA Syncer |
Subject: |
[elpa] externals/auctex-cont-latexmk 6a9518e566 097/100: indentation, swap cl for seq |
Date: |
Thu, 6 Jun 2024 03:58:00 -0400 (EDT) |
branch: externals/auctex-cont-latexmk
commit 6a9518e5668c49b929dfb817997d5b8419d4ede1
Author: Paul Nelson <ultrono@gmail.com>
Commit: Paul Nelson <ultrono@gmail.com>
indentation, swap cl for seq
---
auctex-cont-latexmk.el | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/auctex-cont-latexmk.el b/auctex-cont-latexmk.el
index 06fe1e1373..ee633e14e6 100644
--- a/auctex-cont-latexmk.el
+++ b/auctex-cont-latexmk.el
@@ -139,7 +139,8 @@ Adapted from `TeX-format-filter'"
(not (memq (char-after (1+ (point))) '(?\n ?\()))
(not (and (eq (char-before) ?.)
(char-after (1+ (point)))
- (not (eq ?w (char-syntax (char-after (1+
(point)))))))))
+ (not (eq ?w (char-syntax
+ (char-after (1+ (point)))))))))
(delete-char 1))))
(defun tex-continuous--error-list (log-file)
@@ -295,7 +296,8 @@ empty, except when NOKILL is non-nil."
(when (and comp-buf (buffer-live-p comp-buf))
(with-current-buffer comp-buf
(setq tex-continuous--subscribed-buffers
- (cl-remove buf tex-continuous--subscribed-buffers))
+ (seq-remove (lambda (b) (eq b buf))
+ tex-continuous--subscribed-buffers))
(when (null tex-continuous--subscribed-buffers)
(setq done t)))
(when done
@@ -349,7 +351,8 @@ This is called from the compilation buffer when it is
killed."
(get-buffer comp-buf-name))
(special-mode)
(add-hook 'after-change-functions #'tex-continuous--update-time nil
t)
- (add-hook 'kill-buffer-hook #'tex-continuous--cancel-subscriptions
nil t)
+ (add-hook 'kill-buffer-hook
+ #'tex-continuous--cancel-subscriptions nil t)
(push buf tex-continuous--subscribed-buffers))))
(add-hook 'kill-buffer-hook 'tex-continuous--unsubscribe nil t)
(setq tex-continuous--disable-function 'tex-continuous-mode-disable)
- [elpa] externals/auctex-cont-latexmk 8b6924f833 038/100: fix typo and tweak README.org, (continued)
- [elpa] externals/auctex-cont-latexmk 8b6924f833 038/100: fix typo and tweak README.org, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 30694ac352 039/100: make TAB switch from compilation buffer back to tex file, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk ef4f329804 045/100: change description, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk b208286d55 083/100: Add some tips to README, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk a769d92a2c 100/100: rename: tex-continuous -> auctex-cont-latexmk, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 91870fa1a2 075/100: add ":after latex" to the use-package declaration, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk d2f6dbaae4 073/100: correct use-package declaration, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 1ffdaaf722 080/100: Add some clarifications and remarks to the readme, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 831be210d9 082/100: Deactivate upon file rename, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 5c367ff46e 091/100: Replace tex-continuous--build-file with TeX-master-output-file, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 6a9518e566 097/100: indentation, swap cl for seq,
ELPA Syncer <=
- [elpa] externals/auctex-cont-latexmk acfaf552b7 011/100: Add .html to .gitignore, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 119577bfdf 076/100: Allow latexmk completion to be detected based on timing, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 2a48f822c9 084/100: Deactivate when the compilation buffer is killed, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 35cb9fac09 089/100: Check if compilation buffer has been killed before unsubscribing, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 5e9df47daf 086/100: Put errors without file or line number at end of buffer, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 78a651c254 093/100: add missing docstring, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk f30652de43 099/100: Preserve Flymake status and selected Flymake backends, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 79948cf651 066/100: tweaks, docs, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk b73ac67b86 085/100: New command tex-continuous-help-at-point, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 1c5248a3ac 087/100: expand README tips, ELPA Syncer, 2024/06/06