branch: externals/gtags-mode
commit 3f43b6056d1efa0da57431c7fab98fe5170eb136
Author: Jimmy Aguilar Mena <[email protected]>
Commit: Jimmy Aguilar Mena <[email protected]>
;; Fix typo
---
gtags-mode.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gtags-mode.el b/gtags-mode.el
index 7dcf906feb..4b3aa3f972 100644
--- a/gtags-mode.el
+++ b/gtags-mode.el
@@ -174,8 +174,8 @@ completions usually from the cache when possible."
((and (stringp prefix) (not (string-blank-p prefix))
(gtags-mode--exec-sync '("--ignore-case" "--completion") prefix)))
((plist-get gtags-mode--plist :cache))
- ((plist-put gtags-mode--plist :cache (gtags-mode--exec-sync
'("--completion")))
- (plist-get gtags-mode--plist :cache))))
+ (t (plist-put gtags-mode--plist :cache (gtags-mode--exec-sync
'("--completion")))
+ (plist-get gtags-mode--plist :cache))))
(defun gtags-mode--buffers-in-root (plist)
"Return a list of buffers which variable `buffer-file-name' is inside PLIST."