diff --git a/core/core-keybinds.el b/core/core-keybinds.el index e6f3151b1..6cfe25317 100644 --- a/core/core-keybinds.el +++ b/core/core-keybinds.el @@ -206,7 +206,7 @@ For example, :nvi will map to (list 'normal 'visual 'insert). See (:map evil-outer-text-objects-map ,key ,outer)) doom--map-forms))) (_ - (condition-case e + (condition-case _ (doom--map-def (pop rest) (pop rest) (doom--keyword-to-states key) desc) (error (error "Not a valid `map!' property: %s" key))) diff --git a/modules/feature/evil/autoload/advice.el b/modules/feature/evil/autoload/advice.el index cd46546be..f831c2608 100644 --- a/modules/feature/evil/autoload/advice.el +++ b/modules/feature/evil/autoload/advice.el @@ -1,6 +1,6 @@ ;;; feature/evil/autoload/advice.el -*- lexical-binding: t; -*- -(defun +evil--insert-newline (&optional above noextranewline) +(defun +evil--insert-newline (&optional above _noextranewline) (let ((pos (save-excursion (beginning-of-line-text) (point))) comment-auto-fill-only-comments) (require 'smartparens) diff --git a/modules/lang/org/autoload/org.el b/modules/lang/org/autoload/org.el index 85d869c21..e5172b047 100644 --- a/modules/lang/org/autoload/org.el +++ b/modules/lang/org/autoload/org.el @@ -44,7 +44,7 @@ current file). Only scans first 2048 bytes of the document." :group 'evil-org (setq org-hide-emphasis-markers +org-pretty-mode) (org-toggle-pretty-entities) - (org-with-silent-modifications + (with-silent-modifications ;; In case the above un-align tables (org-table-map-tables 'org-table-align t)))