X-Loop: owner@HIDDEN Subject: bug#4023: mwheel.el uses (point) instead of point-before-scroll Reply-To: balducci@HIDDEN, 4023 <at> debbugs.gnu.org Resent-From: gabriele balducci <balducci@HIDDEN> Resent-To: bug-submit-list@HIDDEN Resent-CC: Emacs Bugs <bug-gnu-emacs@HIDDEN> Resent-Date: Mon, 03 Aug 2009 16:10:08 +0000 Resent-Message-ID: <handler.4023.B.12493153949458@HIDDEN> Resent-Sender: help-debbugs@HIDDEN X-Emacs-PR-Message: report 4023 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: Received: via spool by submit@HIDDEN id=B.12493153949458 (code B ref -1); Mon, 03 Aug 2009 16:10:08 +0000 Received: (at submit) by emacsbugs.donarmstrong.com; 3 Aug 2009 16:03:14 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: * X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=1.3 required=4.0 tests=FOURLA,IMPRONONCABLE_1, MURPHY_WRONG_WORD2 autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n73G36KM009447 for <submit@HIDDEN>; Mon, 3 Aug 2009 09:03:08 -0700 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MY009-0004ZK-PS for bug-gnu-emacs@HIDDEN; Mon, 03 Aug 2009 12:03:05 -0400 Received: from [199.232.76.173] (port=45059 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MY007-0004YN-St for bug-gnu-emacs@HIDDEN; Mon, 03 Aug 2009 12:03:04 -0400 Received: from dschgrazlin2.univ.trieste.it ([140.105.55.81]:60450 helo=dschgrazlin2.units.it) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from <balducci@HIDDEN>) id 1MY006-0000HM-Vw for bug-gnu-emacs@HIDDEN; Mon, 03 Aug 2009 12:03:03 -0400 Received: from localhost (loopback [127.0.0.1]) by dschgrazlin2.units.it (8.14.3/8.14.3) with ESMTP id n73GQqJE022678 for <bug-gnu-emacs@HIDDEN>; Mon, 3 Aug 2009 18:26:52 +0200 Received: from dschgrazlin2.units.it ([127.0.0.1]) by localhost (dschgrazlin2.units.it [127.0.0.1]) (amavisd-new, port 10024) with LMTP id CNiXh9l2Hucd for <bug-gnu-emacs@HIDDEN>; Mon, 3 Aug 2009 18:26:52 +0200 (CEST) Received: from dschgrazlin2.units.it (loopback [127.0.0.1]) by dschgrazlin2.units.it (8.14.3/8.14.3) with ESMTP id n73GQp5U022674 for <bug-gnu-emacs@HIDDEN>; Mon, 3 Aug 2009 18:26:51 +0200 To: bug-gnu-emacs@HIDDEN X-Mailer: MH-E 8.2; nmh 1.3; GNU Emacs 23.1.1 Date: Mon, 03 Aug 2009 18:26:51 +0200 Message-ID: <22673.1249316835@HIDDEN> From: gabriele balducci <balducci@HIDDEN> X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Hello, apologies if I am wrong. Just upgraded emacs to 23.1 and noted the following issue, related (apparently) to mwheel.el. Here is how to (hopefully) reproduce the problem. In an emacs window (under X): => set the point with mouse-1 => select a region with mouse-3 some lines below => now scroll down with the mouse wheel so that the bottom of the selected region scrolls `out' of the upper edge of the emacs window (the highlighted region must disappear) => extend the region by mouse-3 again => paste the region with mouse-2 somewhere (e.g. in a clean buffer) Result: only the text between the *visible* top of the window and the end of the region has been pasted. I.e. all works as if the beginning of the selected region had moved the first line of the visible portion of the buffer. This contrasts with the behavior in emacs-22.3, where extending the region while scrolling down with the wheel used to work as expected (by me): the contents of the region started from the point set with mouse-1 at the beginning. The (correct) behavior in 23.1 is obtained if scrolling is performed with the side bar, instead of the wheel (and also if the scroll with the wheel does not make the bottom of the region fly out of the upper window edge) Actually, the following new lines have appeared in mwheel.el from 22.3 to 23.1: (opoint (with-current-buffer buffer (when (eq (car-safe transient-mark-mode) 'only) (point)))) and I seem to understand that this is the origin of the problem. In fact, the following change: diff -c ./emacs-23.1/lisp/mwheel.el.ORIG ./emacs-23.1/lisp/mwheel.el *** ./emacs-23.1/lisp/mwheel.el.ORIG Mon Aug 3 17:05:23 2009 --- ./emacs-23.1/lisp/mwheel.el Mon Aug 3 17:05:23 2009 *************** *** 195,201 **** (buffer (window-buffer curwin)) (opoint (with-current-buffer buffer (when (eq (car-safe transient-mark-mode) 'only) ! (point)))) (mods (delq 'click (delq 'double (delq 'triple (event-modifiers event))))) (amt (assoc mods mouse-wheel-scroll-amount))) --- 195,201 ---- (buffer (window-buffer curwin)) (opoint (with-current-buffer buffer (when (eq (car-safe transient-mark-mode) 'only) ! point-before-scroll))) (mods (delq 'click (delq 'double (delq 'triple (event-modifiers event))))) (amt (assoc mods mouse-wheel-scroll-amount))) fixes everything for me. Do not know if this is the best solution (I am only an occasional lisp programmer); I do not even know if the object of my report is actually a problem or instead is something wanted (if so, I would be surprised). Apologies for the length of the message and a BIG THANKS for emacs, of course! ciao gabriele ----- In GNU Emacs 23.1.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.17.6) of 2009-08-03 on dschgrazlin1 Windowing system distributor `The XFree86 Project, Inc', version 11.0.40800000 configured using `configure '--prefix=/usr'' Important settings: value of $LC_ALL: C value of $LC_COLLATE: nil value of $LC_CTYPE: nil value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: nil value of $LANG: C value of $XMODIFIERS: nil locale-coding-system: nil default-enable-multibyte-characters: t Major mode: Text Minor modes in effect: show-paren-mode: t tooltip-mode: t tool-bar-mode: t mouse-wheel-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t global-auto-composition-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t
Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.427 (Entity 5.427) Content-Type: text/plain; charset=utf-8 X-Loop: owner@HIDDEN From: help-debbugs@HIDDEN (Emacs bug Tracking System) To: balducci@HIDDEN Subject: bug#4023: Acknowledgement (mwheel.el uses (point) instead of point-before-scroll) Message-ID: <handler.4023.B.12493153949458.ack@HIDDEN> References: <22673.1249316835@HIDDEN> X-Emacs-PR-Message: ack 4023 X-Emacs-PR-Package: emacs Reply-To: 4023 <at> debbugs.gnu.org Date: Mon, 03 Aug 2009 16:10:09 +0000 Thank you for filing a new bug report with Emacs. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Emacs Bugs <bug-gnu-emacs@HIDDEN> If you wish to submit further information on this problem, please send it to 4023 <at> debbugs.gnu.org, as before. Please do not send mail to help-debbugs@HIDDEN unless you wish to report a problem with the Bug-tracking system. --=20 4023: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D4023 Emacs Bug Tracking System Contact help-debbugs@HIDDEN with problems
Received: (at control) by emacsbugs.donarmstrong.com; 22 Oct 2009 09:35:32 +0000 From lekktu@HIDDEN Thu Oct 22 02:35:31 2009 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=0.0 required=4.0 tests=AWL,MISSING_SUBJECT, MURPHY_DRUGS_REL8,NOSUBJECT,VALID_BTS_CONTROL autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-fx0-f213.google.com (mail-fx0-f213.google.com [209.85.220.213]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n9M9ZTNW004084 for <control@HIDDEN>; Thu, 22 Oct 2009 02:35:31 -0700 Received: by fxm9 with SMTP id 9so9696363fxm.1 for <control@HIDDEN>; Thu, 22 Oct 2009 02:35:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:content-type; bh=8EmqKmTQZFxRHmBqMf0mAHPBq3MFliknc0lztWoJq6Y=; b=HxQYupT4FFltZz1ItMJj0h3XTFYNK5e7ryT0Cek2T3YESYQLNQM8G9V9i2CKiMAEbc EvYuLj8f7w1qApk14qvzihjcYCGQUOU+1DBevO5UhGKLQhzQ6+vBiuihHNGFYaXeeEYe kJYg0CmwEGM5xp9e/Qz4pt4br7Ml4TcpNJkWo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=Y5ybjjcxlLdLgAFAm7oQwPF4q6enZ/vhDgoBesbKLPsYfKZBy2gNxuVUArd1lZsA9C Mqc9bcUQhekOxrkhuBrM/oRLNjZDm8m0DPtCnEMhvvK6rKfs9H9j6QMJR6VObUwlfUeo 7VB35jQ8OYFrwvpcsbgPdQA8bmjmcb1XFRU14= MIME-Version: 1.0 Received: by 10.239.145.8 with SMTP id q8mr761204hba.122.1256204124158; Thu, 22 Oct 2009 02:35:24 -0700 (PDT) From: Juanma Barranquero <lekktu@HIDDEN> Date: Thu, 22 Oct 2009 11:35:04 +0200 Message-ID: <f7ccd24b0910220235g5a4e804cn9a711cba30bbd3e3@HIDDEN> Subject: To: control <at> debbugs.gnu.org Content-Type: text/plain; charset=UTF-8 reassign 4326 emacs,ns merge 4261 4434 merge 1589 3359 4207 merge 3829 4077 tags 4781 + patch tags 4747 + patch tags 4579 + patch tags 4471 + patch tags 4434 + patch tags 4234 + patch tags 4221 + patch tags 4147 + patch tags 4144 + patch tags 4139 + patch tags 4023 + patch tags 4736 + moreinfo unreproducible tags 4547 + notabug tags 4451 + notabug tags 4448 + moreinfo tags 4427 + moreinfo tags 4373 + notabug tags 4360 + notabug tags 4271 + moreinfo tags 4236 + moreinfo tags 4143 + moreinfo unreproducible tags 4120 + moreinfo unreproducible tags 4070 + moreinfo unreproducible severity 4422 wishlist severity 4396 minor severity 4394 minor severity 4341 wishlist severity 4300 minor severity 4263 minor severity 4178 minor severity 4172 wishlist severity 4110 wishlist severity 4056 wishlist close 4772 close 4700 close 4599 close 4515 close 4463 close 4445 close 4395 close 4334 close 4289 close 4219 quit
X-Loop: owner@HIDDEN Subject: bug#4023: mwheel.el uses (point) instead of point-before-scroll Reply-To: Chong Yidong <cyd@HIDDEN>, 4023 <at> debbugs.gnu.org Resent-From: Chong Yidong <cyd@HIDDEN> Resent-To: bug-submit-list@HIDDEN Resent-CC: Emacs Bugs <bug-gnu-emacs@HIDDEN> 2Resent-Date: Sat, 05 Dec 2009 02:55:06 +0000 Resent-Message-ID: <handler.4023.B4023.125998121124240@HIDDEN> Resent-Sender: help-debbugs@HIDDEN X-Emacs-PR-Message: followup 4023 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: patch Received: via spool by 4023-submit@HIDDEN id=B4023.125998121124240 (code B ref 4023); Sat, 05 Dec 2009 02:55:06 +0000 Received: (at 4023) by emacsbugs.donarmstrong.com; 5 Dec 2009 02:46:51 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-0.4 required=4.0 tests=AWL autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from pantheon-po42.its.yale.edu (pantheon-po42.its.yale.edu [130.132.50.101]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nB52kndg024236 for <4023@HIDDEN>; Fri, 4 Dec 2009 18:46:50 -0800 Received: from furry (dhcp128036204089.central.yale.edu [128.36.204.89]) (authenticated bits=0) by pantheon-po42.its.yale.edu (8.12.11.20060308/8.12.11) with ESMTP id nB52kaM7017215 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 4 Dec 2009 21:46:37 -0500 Received: by furry (Postfix, from userid 1000) id BE114C071; Fri, 4 Dec 2009 21:46:36 -0500 (EST) From: Chong Yidong <cyd@HIDDEN> To: Glenn Morris <rgm@HIDDEN>, gabriele balducci <balducci@HIDDEN> Cc: 4023 <at> debbugs.gnu.org Date: Fri, 04 Dec 2009 21:46:36 -0500 Message-ID: <87iqcm5e9f.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-YaleITSMailFilter: Version 1.2c (attachment(s) not renamed) > Just upgraded emacs to 23.1 and noted the following issue, related > (apparently) to mwheel.el. > > Here is how to (hopefully) reproduce the problem. > > In an emacs window (under X): > > => set the point with mouse-1 > => select a region with mouse-3 some lines below > => now scroll down with the mouse wheel so that the bottom of the > selected region scrolls `out' of the upper edge of the emacs window > (the highlighted region must disappear) > => extend the region by mouse-3 again > => paste the region with mouse-2 somewhere (e.g. in a clean buffer) > > Result: > only the text between the *visible* top of the window and the end of > the region has been pasted. I.e. all works as if the beginning of > the selected region had moved the first line of the visible portion > of the buffer. > > This contrasts with the behavior in emacs-22.3, where extending the > region while scrolling down with the wheel used to work as expected > (by me): the contents of the region started from the point set with > mouse-1 at the beginning. > > The (correct) behavior in 23.1 is obtained if scrolling is performed > with the side bar, instead of the wheel (and also if the scroll with > the wheel does not make the bottom of the region fly out of the upper > window edge) This change was made in response to a complaint by Glenn Morris, about the behavior you desire: http://lists.gnu.org/archive/html/emacs-devel/2008-04/msg00409.html Double-click with left mouse to select the word "tree" from "This directory tree...". The word "tree" is highlighted with region face. Scroll down with mouse-wheel so that "tree" goes off the top of the screen. Scroll back up with mouse-wheel. Now the region has been extended to cover a lot more text. The further I scroll down initially, the more is highlighted. I have no preference for either behavior, because I don't use the mouse wheel much. Either way, we should probably make the scrollbar and mouse wheel behavior consistent, though. Glenn, what do you think?
Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.427 (Entity 5.427) Content-Type: text/plain; charset=utf-8 X-Loop: owner@HIDDEN From: help-debbugs@HIDDEN (Emacs bug Tracking System) To: Chong Yidong <cyd@HIDDEN> Subject: bug#4023: Info received (mwheel.el uses (point) instead of point-before-scroll) Message-ID: <handler.4023.B4023.125998121124240.ackinfo@HIDDEN> References: <87iqcm5e9f.fsf@HIDDEN> X-Emacs-PR-Message: ack-info 4023 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: patch Reply-To: 4023 <at> debbugs.gnu.org Date: Sat, 05 Dec 2009 02:55:06 +0000 Thank you for the additional information you have supplied regarding this bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Emacs Bugs <bug-gnu-emacs@HIDDEN> If you wish to submit further information on this problem, please send it to 4023 <at> debbugs.gnu.org. Please do not send mail to help-debbugs@HIDDEN unless you wish to report a problem with the Bug-tracking system. --=20 4023: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D4023 Emacs Bug Tracking System Contact help-debbugs@HIDDEN with problems
X-Loop: owner@HIDDEN Subject: bug#4023: mwheel.el uses (point) instead of point-before-scroll Reply-To: Glenn Morris <rgm@HIDDEN>, 4023 <at> debbugs.gnu.org Resent-From: Glenn Morris <rgm@HIDDEN> Resent-To: bug-submit-list@HIDDEN Resent-CC: Emacs Bugs <bug-gnu-emacs@HIDDEN> 2Resent-Date: Sat, 05 Dec 2009 21:10:04 +0000 Resent-Message-ID: <handler.4023.B4023.126004719532004@HIDDEN> Resent-Sender: help-debbugs@HIDDEN X-Emacs-PR-Message: followup 4023 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: patch Received: via spool by 4023-submit@HIDDEN id=B4023.126004719532004 (code B ref 4023); Sat, 05 Dec 2009 21:10:04 +0000 Received: (at 4023) by emacsbugs.donarmstrong.com; 5 Dec 2009 21:06:35 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-5.6 required=4.0 tests=AWL,X_DEBBUGS_NO_ACK autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nB5L6YEP032000 for <4023@HIDDEN>; Sat, 5 Dec 2009 13:06:35 -0800 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from <rgm@HIDDEN>) id 1NH1po-00006Y-W7; Sat, 05 Dec 2009 16:06:33 -0500 From: Glenn Morris <rgm@HIDDEN> To: Chong Yidong <cyd@HIDDEN> Cc: gabriele balducci <balducci@HIDDEN>, 4023 <at> debbugs.gnu.org References: <87iqcm5e9f.fsf@HIDDEN> X-Spook: AMEMB enemy of the state BLU-97 A/B TWA Taiwan Qaddafi X-Ran: I[5)'mYxe<u>G(j]"`%p298/q_E20C{.:5YIeVtz0QXA{beu_?2$Ku?)L$=m)2An4:v=wc X-Hue: blue X-Attribution: GM Date: Sat, 05 Dec 2009 16:06:32 -0500 In-Reply-To: <87iqcm5e9f.fsf@HIDDEN> (Chong Yidong's message of "Fri, 04 Dec 2009 21:46:36 -0500") Message-ID: <q9ocmdceqv.fsf@HIDDEN> User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Chong Yidong wrote: > I have no preference for either behavior, because I don't use the mouse > wheel much. Either way, we should probably make the scrollbar and mouse > wheel behavior consistent, though. Emacs 22.3 seems to make both me and the OP happy. When transient-mark-mode is off, it does not have the issue I complained about. When transient-mark-mode is on, it behaves the way the OP wants. (So by default 22.3 does NOT behave the way the OP asks for, AFAICS.) I complained when the behaviour I disliked (and I do find it really annoying) started happening even when t-m-m was off. So is there a way to make us both happy, by getting the 22.3 behaviour back? I don't care at all what the defaults are, so long as I can get the behaviour I like somehow.
X-Loop: owner@HIDDEN Subject: bug#4023: mwheel.el uses (point) instead of point-before-scroll Reply-To: gabriele balducci <balducci@HIDDEN>, 4023 <at> debbugs.gnu.org Resent-From: gabriele balducci <balducci@HIDDEN> Resent-To: bug-submit-list@HIDDEN Resent-CC: Emacs Bugs <bug-gnu-emacs@HIDDEN> 2Resent-Date: Wed, 09 Dec 2009 11:20:03 +0000 Resent-Message-ID: <handler.4023.B4023.126035730629281@HIDDEN> Resent-Sender: help-debbugs@HIDDEN X-Emacs-PR-Message: followup 4023 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: patch Received: via spool by 4023-submit@HIDDEN id=B4023.126035730629281 (code B ref 4023); Wed, 09 Dec 2009 11:20:03 +0000 Received: (at 4023) by emacsbugs.donarmstrong.com; 9 Dec 2009 11:15:06 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=0.7 required=4.0 tests=AWL autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from dschgrazlin2.units.it (dschgrazlin2.univ.trieste.it [140.105.55.81]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nB9BF2PL029179 for <4023@HIDDEN>; Wed, 9 Dec 2009 03:15:05 -0800 Received: from localhost (loopback [127.0.0.1]) by dschgrazlin2.units.it (8.14.3/8.14.3) with ESMTP id nB9BgOYI026586; Wed, 9 Dec 2009 12:42:24 +0100 Received: from dschgrazlin2.units.it ([127.0.0.1]) by localhost (dschgrazlin2.units.it [127.0.0.1]) (amavisd-new, port 10024) with LMTP id sewY9ksqIP4x; Wed, 9 Dec 2009 12:42:24 +0100 (CET) Received: from dschgrazlin2.units.it (loopback [127.0.0.1]) by dschgrazlin2.units.it (8.14.3/8.14.3) with ESMTP id nB9BgKrY026574; Wed, 9 Dec 2009 12:42:20 +0100 To: rgm@HIDDEN, cyd@HIDDEN, 4023 <at> debbugs.gnu.org In-reply-to: Your message of "Sat, 05 Dec 2009 16:06:32 EST." <q9ocmdceqv.fsf@HIDDEN> X-Mailer: MH-E 8.2; nmh 1.3; GNU Emacs 23.1.1 Date: Wed, 09 Dec 2009 12:42:20 +0100 Message-ID: <26573.1260358964@HIDDEN> From: gabriele balducci <balducci@HIDDEN> Hi there > > I have no preference for either behavior, because I don't use the mouse > > wheel much. Either way, we should probably make the scrollbar and mouse > > wheel behavior consistent, though. I do not use the wheel very much too, but the occasions on which I use it are just when I want to mark a wide region by scrolling! Actually, I did not realize that someone might want to: => mark a (small) region => scroll down with the wheel => paste the region contents previously selected and, of course, this is just the opposite of what I normally do! > > Emacs 22.3 seems to make both me and the OP happy. > > When transient-mark-mode is off, it does not have the issue I > complained about. When transient-mark-mode is on, it behaves the way > the OP wants. (So by default 22.3 does NOT behave the way the OP asks > for, AFAICS.) Actually, I used to raise transient-mark-mode on at emacs startup > > I complained when the behaviour I disliked (and I do find it really > annoying) started happening even when t-m-m was off. > > So is there a way to make us both happy, by getting the 22.3 behaviour > back? I don't care at all what the defaults are, so long as I can get > the behaviour I like somehow. Me too. I am not a lisp/emacs developer, so do not know whether this might be a good/feasible option: what about a t/nil configurable variable such as wheel-scroll-extends-region? thanks and ciao gabriele
Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.427 (Entity 5.427) Content-Type: text/plain; charset=utf-8 X-Loop: owner@HIDDEN From: help-debbugs@HIDDEN (Emacs bug Tracking System) To: gabriele balducci <balducci@HIDDEN> Subject: bug#4023: Info received (mwheel.el uses (point) instead of point-before-scroll) Message-ID: <handler.4023.B4023.126035730629281.ackinfo@HIDDEN> References: <26573.1260358964@HIDDEN> X-Emacs-PR-Message: ack-info 4023 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: patch Reply-To: 4023 <at> debbugs.gnu.org Date: Wed, 09 Dec 2009 11:20:04 +0000 Thank you for the additional information you have supplied regarding this bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Emacs Bugs <bug-gnu-emacs@HIDDEN> If you wish to submit further information on this problem, please send it to 4023 <at> debbugs.gnu.org. Please do not send mail to help-debbugs@HIDDEN unless you wish to report a problem with the Bug-tracking system. --=20 4023: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D4023 Emacs Bug Tracking System Contact help-debbugs@HIDDEN with problems
Received: (at control) by debbugs.gnu.org; 9 Oct 2019 00:39:27 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Tue Oct 08 20:39:27 2019 Received: from localhost ([127.0.0.1]:51670 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1iI00l-0006Oo-2E for submit <at> debbugs.gnu.org; Tue, 08 Oct 2019 20:39:27 -0400 Received: from mail-pl1-f173.google.com ([209.85.214.173]:41351) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <stefankangas@HIDDEN>) id 1iI00j-0006Ob-Pi for control <at> debbugs.gnu.org; Tue, 08 Oct 2019 20:39:26 -0400 Received: by mail-pl1-f173.google.com with SMTP id t10so170082plr.8 for <control <at> debbugs.gnu.org>; Tue, 08 Oct 2019 17:39:25 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=cQZf441M2oBZH49Pg9nV1TGjtQOdlL9qMVAOR2Ceqj4=; b=VkBEuv1BSoGQ5fA7KUuu5zC8mgnBVgVPpb0hr0ywkV2HDybWjnKl1fgzrlFvCtiKwZ DiiH9UK9et8XNqD0/F+IH5QouXBahXJ2kXmHRozKgwBb+TOLML86FgrNY9q70O6Zi1Vu nNdVdLoEk2KpveIkg4iDIXm4Qhn9CJlhIDfgeBjQULbK4VyEyWZ9NfFwme3TxiDBmMbf U/BMRe9kDIHL9YpvKT6ai/m14EXlP6hlEQDsdUjqT/StpvMchRopGpZdNcw1wbDcPSUg YQkzn6IibXUKa0b+uHCTQxz1mZqYZ9W5rmQUyZ2rx6YBFkq/z7gWQpBKSYV/Gj/g49hX Gmqg== X-Gm-Message-State: APjAAAUnGvDJ7U43xObJxGxN3bu7kAeSfYAr90aViBHINSnCuHaSaPdX qRFfe0TmoGN7l94rJ/SE4MknWRiyvaqLoPDb0O6KXRMe X-Google-Smtp-Source: APXvYqy5IE5vgjoqvttImoWd4OLDS5UENcsP1Ai5XblP4gFYmSH+TYiXoJRytLcsbkvUf6XiPH5J6yzH5WiAkMhhNKI= X-Received: by 2002:a17:902:ac98:: with SMTP id h24mr453014plr.128.1570581559538; Tue, 08 Oct 2019 17:39:19 -0700 (PDT) MIME-Version: 1.0 From: Stefan Kangas <stefan@HIDDEN> Date: Wed, 9 Oct 2019 02:39:08 +0200 Message-ID: <CADwFkm=MvKOYSX3cs6BfvszS_eHPpPLi-E32SYh6UDrY+ycQqw@HIDDEN> Subject: To: control <at> debbugs.gnu.org Content-Type: multipart/alternative; boundary="000000000000f2772805946f8383" X-Spam-Score: 2.3 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: severity 4023 wishlist quit severity 4023 wishlist quit Content analysis details: (2.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (stefankangas[at]gmail.com) 0.2 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail domains are different -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 HTML_MESSAGE BODY: HTML included in message -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.214.173 listed in list.dnswl.org] 0.0 FREEMAIL_FORGED_FROMDOMAIN 2nd level domains in From and EnvelopeFrom freemail headers are different 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: severity 4023 wishlist quit severity 4023 wishlist quit Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.214.173 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (stefankangas[at]gmail.com) 0.2 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail domains are different -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 HTML_MESSAGE BODY: HTML included in message 0.0 FREEMAIL_FORGED_FROMDOMAIN 2nd level domains in From and EnvelopeFrom freemail headers are different -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 2.0 BLANK_SUBJECT Subject is present but empty --000000000000f2772805946f8383 Content-Type: text/plain; charset="UTF-8" severity 4023 wishlist quit --000000000000f2772805946f8383 Content-Type: text/html; charset="UTF-8" <div dir="ltr"><div>severity 4023 wishlist</div><div>quit</div><div><br></div></div> --000000000000f2772805946f8383--
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.