lc variable name

This commit is contained in:
2023-06-12 09:19:37 +02:00
parent 350a27e5d2
commit c5cf26b41f

View File

@@ -241,12 +241,12 @@ associated Lisp form."
(when (> (point) autoscratch-trigger-after) (when (> (point) autoscratch-trigger-after)
(autoscratch--eval-trigger autoscratch-default-trigger))))) (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'. "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." N is the char the user just entered into the (new) scratch buffer."
(interactive "p") (interactive "p")
(self-insert-command N) (self-insert-command n)
(autoscratch--look-for-triggers nil)) (autoscratch--look-for-triggers nil))
(defun autoscratch--yank (&optional arg) (defun autoscratch--yank (&optional arg)