[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/gtags-mode c823dcffc9 49/61: Assert not call plist-put
From: |
ELPA Syncer |
Subject: |
[elpa] externals/gtags-mode c823dcffc9 49/61: Assert not call plist-put for nil |
Date: |
Thu, 28 Apr 2022 10:57:42 -0400 (EDT) |
branch: externals/gtags-mode
commit c823dcffc9a5fa96f425679a1721bfc3c03a68d5
Author: Jimmy Aguilar Mena <kratsbinovish@gmail.com>
Commit: Jimmy Aguilar Mena <kratsbinovish@gmail.com>
Assert not call plist-put for nil
---
gtags-mode.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gtags-mode.el b/gtags-mode.el
index e67d5980ea..4071b5fb75 100644
--- a/gtags-mode.el
+++ b/gtags-mode.el
@@ -108,7 +108,8 @@ This is the sentinel set in `gtags-mode--exec-async'."
(message "Global async error output:\n%s" (buffer-string))))
(when (buffer-live-p parent-buffer) ;; Always clear the cache
(with-current-buffer parent-buffer
- (plist-put gtags-mode--plist :cache nil)))
+ (when gtags-mode--plist
+ (plist-put gtags-mode--plist :cache nil))))
;; TODO: use `remote-command' in the future, it will be on emacs 29.1
(message "Async %s: %s" (process-get process :command) event))) ;; Notify
- [elpa] externals/gtags-mode 70b6c217d5 20/61: Add support for project.el., (continued)
- [elpa] externals/gtags-mode 70b6c217d5 20/61: Add support for project.el., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 148041bbe9 55/61: Cleanup and reorder code., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 3012f128ea 59/61: Change "Gtags" to " Gtags" for minor-mode name, ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode a2c84b5a2b 28/61: Optimize avoiding with-current-buffer., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 076ae4a55e 51/61: Fall back to default on imenu., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode c60bb82307 42/61: Don't use with-memoization it is too new., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 54368ee7e0 38/61: Better use of the new plist., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 053184f8b5 14/61: Don't call with-connection-local-variables, ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 192258fa32 17/61: Use list instead of quotes., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 9fc5c618a1 36/61: Simplify a bit more the cache handling code., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode c823dcffc9 49/61: Assert not call plist-put for nil,
ELPA Syncer <=
- [elpa] externals/gtags-mode d4890f5bb3 45/61: Small simplification., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 95b730930b 27/61: Remove global-xref--sync-sentinel, ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 1f2f3d272b 57/61: Fix performance issue., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 9dcb18fbe7 58/61: Use cscope output; it is easier to parse., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 0954a065d3 37/61: Miscellaneous fixes, ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode a14940cd98 35/61: Reorder some code and simplify cache code, ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode e8d19c4333 52/61: Add code to run extra sentinel, ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 9c4323a5e6 13/61: Improve connection local code., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode a9f6acbaba 22/61: List GTAGS buffers., ELPA Syncer, 2022/04/28
- [elpa] externals/gtags-mode 04c2d9fbaf 24/61: Use file-truename, ELPA Syncer, 2022/04/28