summaryrefslogtreecommitdiff
path: root/lisp/term/bg-mouse.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-24 05:35:30 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-24 05:35:30 +0000
commitfc4c0f0eb723fa8f6ded54e2f87cda1f07c6696b (patch)
tree8682721be649a002efed0834a2fee625789ac65b /lisp/term/bg-mouse.el
parent0d5bc74e094119cf596ad1a5e42dc82a46b29b8c (diff)
downloademacs-fc4c0f0eb723fa8f6ded54e2f87cda1f07c6696b.tar.gz
(bg-yank-or-pop): Changed eql to eq.
Diffstat (limited to 'lisp/term/bg-mouse.el')
-rw-r--r--lisp/term/bg-mouse.el2
1 files changed, 1 insertions, 1 deletions
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)))