branch: externals/gtags-mode
commit 192258fa3234fb984c57e34e5e62df6d5af090f4
Author: Jimmy Aguilar Mena <[email protected]>
Commit: Jimmy Aguilar Mena <[email protected]>

    Use list instead of quotes.
---
 global-xref.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/global-xref.el b/global-xref.el
index e3cef04aff..2ba6858128 100644
--- a/global-xref.el
+++ b/global-xref.el
@@ -183,7 +183,7 @@ name, code, file, line."
           (global-xref--exec-sync
            'global-xref--global
            (append args global-xref--output-format-options
-                   `(,(shell-quote-argument symbol)))))))
+                   (list (shell-quote-argument symbol)))))))
 
 ;; Interactive commands ==============================================
 (defun global-xref-create (root-dir)
@@ -263,7 +263,7 @@ any additional command line arguments to pass to GNU 
Global."
     (global-xref--filter-find-symbol
      '("--file") (file-name-nondirectory buffer-file-name)
      (lambda (name _code _file line)
-       `(,name ,line #'global-xref--imenu-goto-function)))))
+       (list name line #'global-xref--imenu-goto-function)))))
 
 ;;;###autoload
 (define-minor-mode global-xref-mode

Reply via email to