On Fri, 21 Sep 2012 12:49:09 +0300 Meir Goldenberg wrote:
I do not know lisp. I found the following line of code in
go-autocomplete.el:
(defvar ac-source-go
'((candidates . ac-go-candidates)
(prefix . "\\.\\(.*\\)")
(requires . 0)))
Should I write this instead:
(defvar ac-source-go
'((candidates . ac-go-candidates)
(prefix . '.')
(requires . 0)))
?
Could you please point me exactly to the file and line number that I need
to modify and spell out the change?
Thank you!
Meir
I do not know lisp. I found the following line of code in
go-autocomplete.el:
(defvar ac-source-go
'((candidates . ac-go-candidates)
(prefix . "\\.\\(.*\\)")
(requires . 0)))
Should I write this instead:
(defvar ac-source-go
'((candidates . ac-go-candidates)
(prefix . '.')
(requires . 0)))
?
Could you please point me exactly to the file and line number that I need
to modify and spell out the change?
Thank you!
Meir
--