Skip to content

Commit 3c011dd

Browse files
authored
lsp.el: fix "no lexical binding" warning (#4329)
Upstream Emacs has enabled warnings for `.el` files with no lexical-binding directive, so this file triggers a: In toplevel form: lsp.el:1:1: Warning: file has no ‘lexical-binding’ directive on its first line Fix that.
1 parent ebe16fc commit 3c011dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lsp.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;; The code was moved into lsp-mode.el. This file is kept only for backward compatibility.
1+
;; The code was moved into lsp-mode.el. This file is kept only for backward compatibility. -*- lexical-binding: t -*-
22
(require 'lsp-mode)
33

44
;; (warn "Replace (require 'lsp) with (require 'lsp-mode)")

0 commit comments

Comments
 (0)