From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: [PATCH] extend doc strings of priority defcustoms Date: Mon, 30 May 2011 20:23:21 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:41203) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QR77c-0002W9-Ed for emacs-orgmode@gnu.org; Mon, 30 May 2011 14:23:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QR77b-0004Do-HS for emacs-orgmode@gnu.org; Mon, 30 May 2011 14:23:24 -0400 Received: from mail-ew0-f41.google.com ([209.85.215.41]:59654) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QR77b-0004DT-Cr for emacs-orgmode@gnu.org; Mon, 30 May 2011 14:23:23 -0400 Received: by ewy9 with SMTP id 9so1535247ewy.0 for ; Mon, 30 May 2011 11:23:22 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org Mode * org.el (org-default-priority): document dependency on org-priority-start-cycle-with-default * org.el (org-priority-start-cycle-with-default): document dependency on org-default-priority TINYCHANGE --- lisp/org.el | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 498c606..a729440 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -2488,14 +2488,18 @@ Must have a larger ASCII number than `org-highest-priority'." (defcustom org-default-priority ?B "The default priority of TODO items. -This is the priority an item get if no explicit priority is given." +This is the priority an item gets if no explicit priority is given. +Required to be between `org-highest-priority' and `org-lowest-priority' +if `org-priority-start-cycle-with-default' is non-nil, else it is not +possible to start cycling on an empty tag." :group 'org-priorities :type 'character) (defcustom org-priority-start-cycle-with-default t "Non-nil means start with default priority when starting to cycle. When this is nil, the first step in the cycle will be (depending on the -command used) one higher or lower that the default priority." +command used) one higher or lower than the default priority. +If non-nil see also `org-default-priority'." :group 'org-priorities :type 'boolean) -- 1.7.4.2