From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id SHYBGIoKm19aTwAA0tVLHw (envelope-from ) for ; Thu, 29 Oct 2020 18:31:38 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id 4MvWE4oKm1+jcAAAbx9fmQ (envelope-from ) for ; Thu, 29 Oct 2020 18:31:38 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id B0AC69401D0 for ; Thu, 29 Oct 2020 18:31:37 +0000 (UTC) Received: from localhost ([::1]:59868 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kYCi0-0001KN-HL for larch@yhetil.org; Thu, 29 Oct 2020 14:31:36 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54938) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kYCgw-00019X-HQ for emacs-orgmode@gnu.org; Thu, 29 Oct 2020 14:30:31 -0400 Received: from grinta.net ([109.74.203.128]:43340) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kYCgs-000502-EN for emacs-orgmode@gnu.org; Thu, 29 Oct 2020 14:30:30 -0400 Received: from black.local (unknown [185.246.128.83]) (Authenticated sender: daniele) by grinta.net (Postfix) with ESMTPSA id 2D948ED532 for ; Thu, 29 Oct 2020 18:30:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=grinta.net; s=2020; t=1603996221; bh=ZzU9pulPke1NiRXtzcWLVrYl/BCU2+JC/xaiDATJUt4=; h=To:From:Subject:Date:From; b=awav2u5j+TV4p4zlHNhJkx6f+Dv7DpWaku1luk9rGG69lFw4sbpMsWKi43M7y9BAh /ZpZbB4gpgB0aib5H96nP6f64ykXIIkSFBg/cTEi17J7x2oLJA0jwGSuAKiMhAFPIP CydT3Z4GlpwbCQ7+MXw/ovsqJR9uDgO1a/kBQlDZWDTYgs1iovdptYRIN9Yq69nCbu ld75JRCvNvXU8pTk0rPCn3hGDgrZCCwMpusAqEFyi1VgHp4DKrw1CUgvdB8/IQ+1Mq KgtGmClmMzIAMHrZXul07nAOVTh+lHtXJR7gvHc380p0tvPQCNCFR7TjWfKyc254Ef v5hSAvobEA/5g== To: Org Mode List From: Daniele Nicolodi Subject: Inconsistency between code and manual: org-lowest-priority or org-priority-lowest Message-ID: Date: Thu, 29 Oct 2020 19:30:18 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Thunderbird/68.12.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Received-SPF: pass client-ip=109.74.203.128; envelope-from=daniele@grinta.net; helo=grinta.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/10/29 14:30:21 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-orgmode@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+larch=yhetil.org@gnu.org Sender: "Emacs-orgmode" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=fail (rsa verify failed) header.d=grinta.net header.s=2020 header.b=awav2u5j; dmarc=none; spf=pass (aspmx1.migadu.com: domain of emacs-orgmode-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=emacs-orgmode-bounces@gnu.org X-Spam-Score: -0.01 X-TUID: 80/z8ue5aG+k Hello, I found an inconsistency between the manual and implementation: the Priorities section says that the range of valid priorities can be set modifying the `org-priority-highest', `org-priority-lowest' and `org-priority-default' variables. However, in the code the variables names are `org-highest-priority', `org-lowest-priority' and `org-default-priority'. In can submit a patch with a fix. However, in a case like this, should the code modified to match the documentation, or vice-versa? Thank you. Cheers, Dan