From c5cf26b41f86aeb9f8bc64da2fe484ece807ac19 Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Mon, 12 Jun 2023 09:19:37 +0200 Subject: [PATCH] lc variable name --- autoscratch.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoscratch.el b/autoscratch.el index ed3bb07..d2c3a92 100644 --- a/autoscratch.el +++ b/autoscratch.el @@ -241,12 +241,12 @@ associated Lisp form." (when (> (point) autoscratch-trigger-after) (autoscratch--eval-trigger autoscratch-default-trigger))))) -(defun autoscratch--self-insert-command (N) +(defun autoscratch--self-insert-command (n) "Look for autoscratch trigger, execute if found and call `self-insert-command'. N is the char the user just entered into the (new) scratch buffer." (interactive "p") - (self-insert-command N) + (self-insert-command n) (autoscratch--look-for-triggers nil)) (defun autoscratch--yank (&optional arg)