From: Sean O'Rourke <sorourke@cs.ucsd.edu>
To: emacs-devel@gnu.org
Subject: mouse-1-click-in-non-selected-windows
Date: Wed, 28 Feb 2007 14:03:09 -0800 [thread overview]
Message-ID: <m2649mlz36.fsf@cs.ucsd.edu> (raw)
I believe this change is necessary to make
mouse-1-click-in-non-selected-windows consistent with
mouse-1-click-follows-link when the latter is set to nil (which
is the case later around line 919).
/s
Index: mouse.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/mouse.el,v
retrieving revision 1.312
diff -u -r1.312 mouse.el
--- mouse.el 26 Feb 2007 10:11:34 -0000 1.312
+++ mouse.el 28 Feb 2007 22:00:05 -0000
@@ -834,7 +834,8 @@
at the same position."
(let ((action
(and (or (not (consp pos))
- mouse-1-click-in-non-selected-windows
+ (and mouse-1-click-follows-link
+ mouse-1-click-in-non-selected-windows)
(eq (selected-window) (posn-window pos)))
(or (mouse-posn-property pos 'follow-link)
(key-binding [follow-link] nil t pos)))))
next reply other threads:[~2007-02-28 22:03 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-02-28 22:03 Sean O'Rourke [this message]
2007-03-05 2:55 ` mouse-1-click-in-non-selected-windows Richard Stallman
2007-03-05 17:35 ` mouse-1-click-in-non-selected-windows Sean O'Rourke
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m2649mlz36.fsf@cs.ucsd.edu \
--to=sorourke@cs.ucsd.edu \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.