Skip to content

Commit

Permalink
kill-ring should be let-binded to nil
Browse files Browse the repository at this point in the history
  • Loading branch information
ROCKTAKEY committed Jul 29, 2023
1 parent 79a338d commit 273f730
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smartparens.el
Original file line number Diff line number Diff line change
Expand Up @@ -9085,7 +9085,7 @@ backward direction.

See `sp-forward-symbol' for what constitutes a symbol."
(interactive "*p")
(let* ((kill-ring kill-ring)
(let* ((kill-ring nil)
(select-enable-clipboard nil))
(sp-kill-symbol arg word)))

Expand Down Expand Up @@ -9162,7 +9162,7 @@ forward direction.

See `sp-backward-symbol' for what constitutes a symbol."
(interactive "*p")
(let* ((kill-ring kill-ring)
(let* ((kill-ring nil)
(select-enable-clipboard nil))
(sp-backward-kill-symbol arg word)))

Expand Down

0 comments on commit 273f730

Please sign in to comment.