branch: master
commit 4205ad678436e0e0d314792cb2ad222541458a16
Merge: 87f479b 7c6357a
Author: Dmitry Gutov <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #830 from jabranham/alias
Define variable alias before referent
---
company-gtags.el | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/company-gtags.el b/company-gtags.el
index 02513ca..2a85f23 100644
--- a/company-gtags.el
+++ b/company-gtags.el
@@ -33,15 +33,15 @@
"Completion backend for GNU Global."
:group 'company)
+(define-obsolete-variable-alias
+ 'company-gtags-gnu-global-program-name
+ 'company-gtags-executable "earlier")
+
(defcustom company-gtags-executable
(executable-find "global")
"Location of GNU global executable."
:type 'string)
-(define-obsolete-variable-alias
- 'company-gtags-gnu-global-program-name
- 'company-gtags-executable "earlier")
-
(defcustom company-gtags-insert-arguments t
"When non-nil, insert function arguments as a template after completion."
:type 'boolean