Skip to content

Commit

Permalink
utils.el: fix "no lexical binding" warning
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Hi-Angel committed Feb 9, 2024
1 parent a061591 commit 21c210d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions utils.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
;;; -*- lexical-binding: t; -*-
(defun py2el (beg end)
"Helper function for converting Meson data structures from
Python sources to something more similar to elisp."
Expand Down

0 comments on commit 21c210d

Please sign in to comment.