# HG changeset patch # User Richard M. Stallman # Date 869722530 0 # Node ID d1137584b5d6befba662696b31d866edac508a02 # Parent 817d02b8b126f1dd81a1e05db92986d22b61c2e2 (bg-yank-or-pop): Changed eql to eq. diff -r 817d02b8b126 -r d1137584b5d6 lisp/term/bg-mouse.el --- a/lisp/term/bg-mouse.el Thu Jul 24 05:34:02 1997 +0000 +++ b/lisp/term/bg-mouse.el Thu Jul 24 05:35:30 1997 +0000 @@ -137,7 +137,7 @@ "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)))