]> git.eshelyaron.com Git - emacs.git/commitdiff
(bg-yank-or-pop): Changed eql to eq.
authorRichard M. Stallman <rms@gnu.org>
Thu, 24 Jul 1997 05:35:30 +0000 (05:35 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 24 Jul 1997 05:35:30 +0000 (05:35 +0000)
lisp/term/bg-mouse.el

index dfd81d3fba9d1feb5da97b5e0fc99b028241364d..8f980c4d9d120b104fdf3c1d892cc30fc12bd647 100644 (file)
@@ -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)))