From unknown Tue Jun 17 20:18:00 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#928 <928@debbugs.gnu.org> To: bug#928 <928@debbugs.gnu.org> Subject: Status: In CVS Emacs, calc-eval gives multiplication higher precidence than division Reply-To: bug#928 <928@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:18:00 +0000 retitle 928 In CVS Emacs, calc-eval gives multiplication higher precidence = than division reassign 928 emacs submitter 928 Carsten Dominik severity 928 normal thanks From carsten.dominik@gmail.com Mon Sep 8 03:30:39 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-5.0 required=4.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at submit) by emacsbugs.donarmstrong.com; 8 Sep 2008 10:30:39 +0000 Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m88AUYLl000728 for ; Mon, 8 Sep 2008 03:30:36 -0700 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kce0u-0002Wv-3r for bug-gnu-emacs@gnu.org; Mon, 08 Sep 2008 06:30:32 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kce0p-0002Rg-1f for bug-gnu-emacs@gnu.org; Mon, 08 Sep 2008 06:30:28 -0400 Received: from [199.232.76.173] (port=40744 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kce0o-0002Ql-J7 for bug-gnu-emacs@gnu.org; Mon, 08 Sep 2008 06:30:26 -0400 Received: from ug-out-1314.google.com ([66.249.92.174]:61789) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Kce0n-00047a-Fo for bug-gnu-emacs@gnu.org; Mon, 08 Sep 2008 06:30:26 -0400 Received: by ug-out-1314.google.com with SMTP id k3so404031ugf.17 for ; Mon, 08 Sep 2008 03:30:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:cc:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:references:x-mailer; bh=tFyA6yB3Rab0ZPmKhPcdhO+vMUbucjj5WJbcSgH5WqY=; b=OvPz/MDB+EZ4EdgUzC1P7Due8G68IA1V5GEm1IpyiZfNmkNeWqYi9hBp645GOQLdOn UouB64eleFzluAv0cJ70jxHHnAozFdSza0DAwirLvWsdugFZjFphe7sDBUOx/Np54v4f QY0j0nIfMmWpjhEF9MpR0TMi5Xqjw0FGdS2fo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=cc:message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:references :x-mailer; b=fXgok8EN5n4tc2msGkz4fMKHfUPVGkYpZicVCWlrNGZjxIbE/nRf93c4Zkk6OVOxh0 KqYNtdURUiEERYuU8KOEhKH+13T6gIbBwrbYPHwuGOkuwiBtaAsKdnb5Hp0QW/NgaKGw kJA6ZsA7OwT84fobeozjDVVlWDzmF3E2XDomM= Received: by 10.67.29.4 with SMTP id g4mr3816343ugj.73.1220869815596; Mon, 08 Sep 2008 03:30:15 -0700 (PDT) Received: from n040078.science.ru.nl ( [131.174.40.78]) by mx.google.com with ESMTPS id e33sm5850470ugd.15.2008.09.08.03.30.13 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 08 Sep 2008 03:30:14 -0700 (PDT) Cc: emacs-devel@gnu.org, bug-gnu-emacs@gnu.org Message-Id: From: Carsten Dominik To: "Randal L. Schwartz" In-Reply-To: <86wshn3df0.fsf@blue.stonehenge.com> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v926) Subject: Re: In CVS Emacs, calc-eval gives multiplication higher precidence than division Date: Mon, 8 Sep 2008 12:30:11 +0200 References: <878wu3j4k2.fsf@gmail.com> <86wshn3df0.fsf@blue.stonehenge.com> X-Mailer: Apple Mail (2.926) X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) On Sep 7, 2008, at 10:32 PM, Randal L. Schwartz wrote: >>>>>> "Stefan" == Stefan Monnier writes: > > Stefan> I think Calc is plainly wrong is giving higher precedence to > the > Stefan> multiplication because it's completely non standard. But > since I don't > Stefan> use Calc much and since it's been that way for a while, I > won't fight > Stefan> for it. I would fight for the current calc implementation, it is an important convenience when entering equations. I am relying on it every day. - Carsten > > > Given the original author's mathematics bias, it made sense (to me, as > an early tester and contributor) that: > > 2 * 3 / 4 * 5 > > would be parsed as > > (2 * 3) / (4 * 5) > > in a mathematical sense. > > Admittedly, if you're a computer-science guy and not a math guy, > this might > seem initially odd. > > -- > Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 > 777 0095 > > Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc. > See http://methodsandmessages.vox.com/ for Smalltalk and Seaside > discussion > > > From rgm@gnu.org Mon Sep 8 13:28:10 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-8.4 required=4.0 tests=AWL,BAYES_00,MISSING_SUBJECT, NOSUBJECT,RCVD_IN_DNSWL_MED,X_DEBBUGS_NO_ACK autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at control) by emacsbugs.donarmstrong.com; 8 Sep 2008 20:28:10 +0000 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m88KS7Yw021722 for ; Mon, 8 Sep 2008 13:28:08 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1KcnJU-0001Hq-TC; Mon, 08 Sep 2008 16:26:20 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18629.35436.837734.98648@fencepost.gnu.org> Date: Mon, 8 Sep 2008 16:26:20 -0400 From: Glenn Morris To: control X-Attribution: GM X-Mailer: VM (www.wonderworks.com/vm), GNU Emacs (www.gnu.org/software/emacs) X-Hue: yellow X-Ran: c}IvT%;AnAHb1{rp6ts&HY4kM:e"?U?h75JSDU*[NLr,LD)AjJo(,m}k@agFN!vuvw?{]` X-Debbugs-No-Ack: yes forcemerge 914 928 929 930 From rgm@gnu.org Mon Sep 8 13:50:45 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-8.4 required=4.0 tests=AWL,BAYES_00,MISSING_SUBJECT, NOSUBJECT,RCVD_IN_DNSWL_MED,X_DEBBUGS_NO_ACK autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at control) by emacsbugs.donarmstrong.com; 8 Sep 2008 20:50:45 +0000 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m88Kog7Z029949 for ; Mon, 8 Sep 2008 13:50:43 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1KcnfM-0002Lg-Me; Mon, 08 Sep 2008 16:48:56 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18629.36792.586608.584219@fencepost.gnu.org> Date: Mon, 8 Sep 2008 16:48:56 -0400 From: Glenn Morris To: control X-Attribution: GM X-Mailer: VM (www.wonderworks.com/vm), GNU Emacs (www.gnu.org/software/emacs) X-Hue: red X-Ran: T^isY|:S+1b#ZMVoY*it2=GpbZZC~9U`VRgc:Eq49yL(-"IpL@k/%giKiuba?REhg(.Yi* X-Debbugs-No-Ack: yes forcemerge 914 932 933 stop please take bug-gnu-emacs out of the cc. :( From rgm@gnu.org Mon Sep 8 13:53:24 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-6.8 required=4.0 tests=AWL,BAYES_00,MISSING_SUBJECT, NOSUBJECT,RCVD_IN_DNSWL_MED,UNRESOLVED_TEMPLATE,X_DEBBUGS_NO_ACK autolearn=no version=3.2.3-bugs.debian.org_2005_01_02 Received: (at control) by emacsbugs.donarmstrong.com; 8 Sep 2008 20:53:24 +0000 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m88KrLvI030285 for ; Mon, 8 Sep 2008 13:53:22 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1Kcnhw-0002lw-FZ; Mon, 08 Sep 2008 16:51:36 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18629.36952.422449.252674@fencepost.gnu.org> Date: Mon, 8 Sep 2008 16:51:36 -0400 From: Glenn Morris To: control X-Attribution: GM X-Mailer: VM (www.wonderworks.com/vm), GNU Emacs (www.gnu.org/software/emacs) X-Hue: black X-Ran: p"k7Pf/kjn3SyU{?N*.c4"x0I3nRokfYLO$9^Y(=g.6Agq9d0?GJq]lKJ,9fZP%XIGPvu= X-Debbugs-No-Ack: yes forcemerge 914 934 From rgm@gnu.org Mon Sep 8 15:22:15 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-8.4 required=4.0 tests=AWL,BAYES_00,MISSING_SUBJECT, NOSUBJECT,RCVD_IN_DNSWL_MED,X_DEBBUGS_NO_ACK autolearn=ham version=3.2.3-bugs.debian.org_2005_01_02 Received: (at control) by emacsbugs.donarmstrong.com; 8 Sep 2008 22:22:15 +0000 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m88MMC9i029905 for ; Mon, 8 Sep 2008 15:22:13 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1Kcp5u-0006LW-Jc; Mon, 08 Sep 2008 18:20:26 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18629.42282.417143.910278@fencepost.gnu.org> Date: Mon, 8 Sep 2008 18:20:26 -0400 From: Glenn Morris To: control X-Attribution: GM X-Mailer: VM (www.wonderworks.com/vm), GNU Emacs (www.gnu.org/software/emacs) X-Hue: green X-Ran: fNvn,:U^mRkQq_\C&M'8BM'%?Cm`=>A=QD(i-BC)}k@LmWKU`UT2Vty[JduHzqtCA>9W$i X-Debbugs-No-Ack: yes forcemerge 914 937 stop the bug report that would not die... From lekktu@gmail.com Tue Sep 9 07:41:25 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3-bugs.debian.org_2005_01_02 (2007-08-08) on rzlab.ucr.edu X-Spam-Level: X-Spam-Status: No, score=-2.1 required=4.0 tests=AWL,BAYES_00,MISSING_SUBJECT, NOSUBJECT autolearn=no version=3.2.3-bugs.debian.org_2005_01_02 Received: (at control) by emacsbugs.donarmstrong.com; 9 Sep 2008 14:41:26 +0000 Received: from mail-gx0-f19.google.com (mail-gx0-f19.google.com [209.85.217.19]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id m89EfITS017384 for ; Tue, 9 Sep 2008 07:41:19 -0700 Received: by gxk12 with SMTP id 12so3900969gxk.1 for ; Tue, 09 Sep 2008 07:41:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=lSLyOfnVyoZJQu/bgjvyfJorcpQVLzq8BTuN9sXPOKc=; b=r+L+cBfkSYKVJf1g5mv3H9zDlI/2Vb44fQaMoBQad5PRH4lRrXCe0q013ejrp2WQqq ZD0F46kfNULC3Zs+8vnnI0BxbKiD0OYuApFnBcV4FTfe+16xfCwHLuO163uibgA0ytAR KcEE6AIdW3/uTZYP/6FZC/zn3uIcrg3sL3ypU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=ldkoec3Z7Wf01SyVg0th+Jnh8p2msWdoVra48FLr/LOjNxYRwJFOordSnwqUmA65V8 owDTgIWkNvqhnMvIuThV3GtE8jmYKScdp2dSpG94Wpb68ET2R7Bv09qWlA64WAqLIxeF 2tBVGVrQTGre4QrDULGwe0jPocQ530UtFXOL8= Received: by 10.100.166.9 with SMTP id o9mr17408754ane.64.1220971272999; Tue, 09 Sep 2008 07:41:12 -0700 (PDT) Received: by 10.100.13.13 with HTTP; Tue, 9 Sep 2008 07:41:12 -0700 (PDT) Message-ID: Date: Tue, 9 Sep 2008 16:41:12 +0200 From: "Juanma Barranquero" To: control@debbugs.gnu.org Subject: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline merge 894 945 forcemerge 914 941 944 quit From unknown Tue Jun 17 20:18:00 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: $requester Subject: Internal Control Message-Id: bug archived. Date: Wed, 08 Oct 2008 14:24:03 +0000 User-Agent: Fakemail v42.6.9 # A New Hope # A log time ago, in a galaxy far, far away # something happened. # # Magically this resulted in the following # action being taken, but this fake control # message doesn't tell you why it happened # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator