diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-16 23:18:17 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-16 23:18:17 +0200 |
commit | 84642807ecb81a2f41bf6008a6f0988407a8cc6c (patch) | |
tree | b7c4044caff2f83cd5a04d134a20aadf694596ed /.config/emacs/site-lisp | |
parent | 8fe67d640e96d58c32cf0bd6168937a3986502b7 (diff) |
emacs: Fix another typo
Diffstat (limited to '.config/emacs/site-lisp')
-rw-r--r-- | .config/emacs/site-lisp/surround.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/emacs/site-lisp/surround.el b/.config/emacs/site-lisp/surround.el index 8fdf443..b5f679d 100644 --- a/.config/emacs/site-lisp/surround.el +++ b/.config/emacs/site-lisp/surround.el @@ -90,7 +90,7 @@ Unicode property." ((or 'c 'n) (cons other char)) ('o (cons char other)))))) -(defun suprround--region (pair beginning end) +(defun surround--region (pair beginning end) (save-excursion (goto-char beginning) (insert (car pair)) |