From: Richard M. Stallman Date: Thu, 24 Jul 1997 05:35:30 +0000 (+0000) Subject: (bg-yank-or-pop): Changed eql to eq. X-Git-Tag: emacs-20.1~1012 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fc4c0f0eb723fa8f6ded54e2f87cda1f07c6696b;p=emacs.git (bg-yank-or-pop): Changed eql to eq. --- 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)))