Correct make-buffer-local => make-local-variable

Reported by @UndeadKernel
This commit is contained in:
Henrik Lissner 2018-06-21 13:29:46 +02:00
parent bc87ccf894
commit 445ca59b67
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -206,7 +206,7 @@
;; major-mode as `latex-mode', but uses LaTeX-mode-hook for its mode, which is
;; not something `set-company-backend!' anticipates (and shouldn't have to!)
(add-hook! LaTeX-mode
(make-buffer-local 'company-backends)
(make-local-variable 'company-backends)
(company-auctex-init)))