From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brian van den Broek Subject: org-list-demote-modify-bullet and alphabetic/numerical bullets Date: Tue, 17 Apr 2012 15:55:37 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:48611) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SK8tO-0004j4-HJ for emacs-orgmode@gnu.org; Tue, 17 Apr 2012 09:56:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SK8tI-00028r-99 for emacs-orgmode@gnu.org; Tue, 17 Apr 2012 09:56:26 -0400 Received: from mail-ob0-f169.google.com ([209.85.214.169]:45102) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SK8tI-00028c-1g for emacs-orgmode@gnu.org; Tue, 17 Apr 2012 09:56:20 -0400 Received: by obbeh20 with SMTP id eh20so3732376obb.0 for ; Tue, 17 Apr 2012 06:56:18 -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: emacs-orgmode Hi all, I have (setq org-alphabetical-lists t) in my .emacs. I am trying to set org-list-demote-modify-bullet to cycle on demoting between bullets of the form -/+ and 1./A. (setq org-list-demote-modify-bullet '(("+" . "-") ("-" . "+") )) accomplishes the -/+ cycling just fine. (setq org-list-demote-modify-bullet '(("+" . "-") ("-" . "+") ("1." . "A.") ("A." . "1."))) has, however, no effect on numerical nor alphabetic bullets, nor do either of (setq org-list-demote-modify-bullet '(("+" . "-") ("-" . "+") ("1." . "-") )) and (setq org-list-demote-modify-bullet '(("+" . "-") ("-" . "+") ("1" . "-") )) affect numerical bullets, so I doubt that it is that alphabetical bullets are the problem. Is there a way to do what I am trying to effect? Thanks and best, Brian vdB