mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
fix(elisp): add lexical-binding comment to all files to suppress new Emacs 31 warnings
I've set `lexical-binding` to `nil` in all Emacs Lisp files to suppress the warnings introduced in Emacs 31 requiring all elisp files to have a `lexical-binding` comment. This retains the default behavior of dynamic binding when no `lexical-binding` comment is present. With it set to `t` across the board, various things break, and fixing those is a task for another day.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
;;; siren-all-the-icons.el --- jimeh's Emacs Siren: all-the-icons configuration.
|
||||
;;; siren-all-the-icons.el --- jimeh's Emacs Siren: all-the-icons configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-amx.el --- jimeh's Emacs Siren: amx configuration.
|
||||
;;; siren-amx.el --- jimeh's Emacs Siren: amx configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-auto-highlight-symbol.el --- jimeh's Emacs Siren: auto-highlight-symbol configuration.
|
||||
;;; siren-auto-highlight-symbol.el --- jimeh's Emacs Siren: auto-highlight-symbol configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-direnv.el --- jimeh's Emacs Siren: direnv configuration.
|
||||
;;; siren-direnv.el --- jimeh's Emacs Siren: direnv configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-display-fill-column.el --- jimeh's Emacs Siren: fill-column configuration.
|
||||
;;; siren-display-fill-column.el --- jimeh's Emacs Siren: fill-column configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-display-indentation.el --- jimeh's Emacs Siren: indent guides setup
|
||||
;;; siren-display-indentation.el --- jimeh's Emacs Siren: indent guides setup -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-display-line-numbers.el --- jimeh's Emacs Siren: display-line-numbers configuration.
|
||||
;;; siren-display-line-numbers.el --- jimeh's Emacs Siren: display-line-numbers configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-doom-modeline.el --- jimeh's Emacs Siren: doom-modeline theme.
|
||||
;;; siren-doom-modeline.el --- jimeh's Emacs Siren: doom-modeline theme. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-edit-server.el --- jimeh's Emacs Siren: edit-server configuration.
|
||||
;;; siren-edit-server.el --- jimeh's Emacs Siren: edit-server configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-embark.el --- jimeh's Emacs Siren: embark configuration.
|
||||
;;; siren-embark.el --- jimeh's Emacs Siren: embark configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-envrc.el --- jimeh's Emacs Siren: envrc configuration.
|
||||
;;; siren-envrc.el --- jimeh's Emacs Siren: envrc configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-evil.el --- jimeh's Emacs Siren: evil configuration.
|
||||
;;; siren-evil.el --- jimeh's Emacs Siren: evil configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-fussy.el --- jimeh's Emacs Siren: fussy configuration.
|
||||
;;; siren-fussy.el --- jimeh's Emacs Siren: fussy configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-hideshow.el --- jimeh's Emacs Siren: folding configuration.
|
||||
;;; siren-hideshow.el --- jimeh's Emacs Siren: folding configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-highlight-indent-guides.el --- jimeh's Emacs Siren: highlight-indent-guides-mode configuration.
|
||||
;;; siren-highlight-indent-guides.el --- jimeh's Emacs Siren: highlight-indent-guides-mode configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-highlight-indentation.el --- jimeh's Emacs Siren: highlight-indentation-mode configuration.
|
||||
;;; siren-highlight-indentation.el --- jimeh's Emacs Siren: highlight-indentation-mode configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-highlight-symbol.el --- jimeh's Emacs Siren: highlight-symbol configuration.
|
||||
;;; siren-highlight-symbol.el --- jimeh's Emacs Siren: highlight-symbol configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-hydra.el --- jimeh's Emacs Siren: hydra-mode configuration.
|
||||
;;; siren-hydra.el --- jimeh's Emacs Siren: hydra-mode configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-ido.el --- jimeh's Emacs Siren: ido configuration.
|
||||
;;; siren-ido.el --- jimeh's Emacs Siren: ido configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-ivy.el --- jimeh's Emacs Siren: ivy configuration.
|
||||
;;; siren-ivy.el --- jimeh's Emacs Siren: ivy configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-minions.el --- jimeh's Emacs Siren: minions configuration.
|
||||
;;; siren-minions.el --- jimeh's Emacs Siren: minions configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-mise.el --- jimeh's Emacs Siren: mise configuration.
|
||||
;;; siren-mise.el --- jimeh's Emacs Siren: mise configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-mwim.el --- jimeh's Emacs Siren: mwim configuration.
|
||||
;;; siren-mwim.el --- jimeh's Emacs Siren: mwim configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-nerd-icons.el --- jimeh's Emacs Siren: nerd-icons configuration.
|
||||
;;; siren-nerd-icons.el --- jimeh's Emacs Siren: nerd-icons configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-orderless.el --- jimeh's Emacs Siren: orderless configuration.
|
||||
;;; siren-orderless.el --- jimeh's Emacs Siren: orderless configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-origami.el --- jimeh's Emacs Siren: origami configuration.
|
||||
;;; siren-origami.el --- jimeh's Emacs Siren: origami configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-prescient.el --- jimeh's Emacs Siren: prescient configuration.
|
||||
;;; siren-prescient.el --- jimeh's Emacs Siren: prescient configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-rainbow.el --- jimeh's Emacs Siren: rainbow-mode configuration.
|
||||
;;; siren-rainbow.el --- jimeh's Emacs Siren: rainbow-mode configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-recentf.el --- jimeh's Emacs Siren: recentf configuration.
|
||||
;;; siren-recentf.el --- jimeh's Emacs Siren: recentf configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-savehist.el --- jimeh's Emacs Siren: savehist configuration.
|
||||
;;; siren-savehist.el --- jimeh's Emacs Siren: savehist configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-selectrum-prescient.el --- jimeh's Emacs Siren: selectrum-prescient configuration.
|
||||
;;; siren-selectrum-prescient.el --- jimeh's Emacs Siren: selectrum-prescient configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-selectrum.el --- jimeh's Emacs Siren: selectrum configuration.
|
||||
;;; siren-selectrum.el --- jimeh's Emacs Siren: selectrum configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-smex.el --- jimeh's Emacs Siren: smex configuration.
|
||||
;;; siren-smex.el --- jimeh's Emacs Siren: smex configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-snap-indent.el --- jimeh's Emacs Siren: snap-indent configuration.
|
||||
;;; siren-snap-indent.el --- jimeh's Emacs Siren: snap-indent configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-subword.el --- jimeh's Emacs Siren: subword-mode configuration.
|
||||
;;; siren-subword.el --- jimeh's Emacs Siren: subword-mode configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-symbol-overlay.el --- jimeh's Emacs Siren: symbol-overlay configuration.
|
||||
;;; siren-symbol-overlay.el --- jimeh's Emacs Siren: symbol-overlay configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-undo-fu-session.el --- jimeh's Emacs Siren: undo-fu-session configuration.
|
||||
;;; siren-undo-fu-session.el --- jimeh's Emacs Siren: undo-fu-session configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-undo-fu.el --- jimeh's Emacs Siren: undo-fu configuration.
|
||||
;;; siren-undo-fu.el --- jimeh's Emacs Siren: undo-fu configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-undo-tree.el --- jimeh's Emacs Siren: undo-tree configuration.
|
||||
;;; siren-undo-tree.el --- jimeh's Emacs Siren: undo-tree configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-undohist.el --- jimeh's Emacs Siren: undohist configuration.
|
||||
;;; siren-undohist.el --- jimeh's Emacs Siren: undohist configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-uniquify.el --- jimeh's Emacs Siren: uniquify configuration.
|
||||
;;; siren-uniquify.el --- jimeh's Emacs Siren: uniquify configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-vertico.el --- jimeh's Emacs Siren: vertico configuration.
|
||||
;;; siren-vertico.el --- jimeh's Emacs Siren: vertico configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-volatile-highlights.el --- jimeh's Emacs Siren: volatile-highlights-mode configuration.
|
||||
;;; siren-volatile-highlights.el --- jimeh's Emacs Siren: volatile-highlights-mode configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-vundo.el --- jimeh's Emacs Siren: vundo configuration.
|
||||
;;; siren-vundo.el --- jimeh's Emacs Siren: vundo configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-which-key.el --- jimeh's Emacs Siren: which-key configuration.
|
||||
;;; siren-which-key.el --- jimeh's Emacs Siren: which-key configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-whitespace.el --- jimeh's Emacs Siren: whitespace configuration.
|
||||
;;; siren-whitespace.el --- jimeh's Emacs Siren: whitespace configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
;;; siren-yank-indent.el --- jimeh's Emacs Siren: yank-indent configuration.
|
||||
;;; siren-yank-indent.el --- jimeh's Emacs Siren: yank-indent configuration. -*- lexical-binding: nil; -*-
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user