changeset 18934:d1137584b5d6

(bg-yank-or-pop): Changed eql to eq.
author Richard M. Stallman <rms@gnu.org>
date Thu, 24 Jul 1997 05:35:30 +0000
parents 817d02b8b126
children ab4cd3135797
files lisp/term/bg-mouse.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)))