From fc4c0f0eb723fa8f6ded54e2f87cda1f07c6696b Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 24 Jul 1997 05:35:30 +0000 Subject: [PATCH] (bg-yank-or-pop): Changed eql to eq. --- lisp/term/bg-mouse.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/term/bg-mouse.el b/lisp/term/bg-mouse.el index dfd81d3fba9..8f980c4d9d1 100644 --- a/lisp/term/bg-mouse.el +++ b/lisp/term/bg-mouse.el @@ -137,7 +137,7 @@ To reinitialize the mouse if the terminal is reset, type ESC : RET" "Move point to location of BitGraph mouse and yank. If last command was a yank, do a yank-pop." (interactive "*") - (if (eql last-command 'yank) + (if (eq last-command 'yank) (yank-pop 1) (bg-yank))) -- 2.39.5