From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Re: VISIBILITY property and C-u C-u Date: Sun, 24 Oct 2010 08:43:47 +0200 Message-ID: References: <1ADD256551CD486E9D4C1122FE9D7CF7@alice> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from [140.186.70.92] (port=40289 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P9uKH-0004CP-Gk for emacs-orgmode@gnu.org; Sun, 24 Oct 2010 02:45:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P9uJ2-0008DF-E0 for emacs-orgmode@gnu.org; Sun, 24 Oct 2010 02:44:31 -0400 Received: from mail-iw0-f169.google.com ([209.85.214.169]:46910) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P9uJ2-0008BO-AS for emacs-orgmode@gnu.org; Sun, 24 Oct 2010 02:43:48 -0400 Received: by iwn9 with SMTP id 9so3077761iwn.0 for ; Sat, 23 Oct 2010 23:43:47 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: Gez , emacs-orgmode@gnu.org > On Oct 17, 2010, at 5:41 PM, Gez wrote: >> C-u C-u TAB also cycles when it's repeated. I have also noticed this buglet and have used a workaround until now. On Fri, Oct 22, 2010 at 18:14, Carsten Dominik wrote: > I believe I have fixed this, please verify. Thank you for this, it resolves both `C-u C-u TAB' and `C-u C-u C-u TAB' except for the special case with the variable org-cycle-global-at-bob. For this special case I suggest additionally: ============================================================ --- a/lisp/org.el +++ b/lisp/org.el @@ -5772,7 +5772,8 @@ in special contexts. `org-cycle-emulate-tab' for details. - Special case: if point is at the beginning of the buffer and there is - no headline in line 1, this function will act as if called with prefix arg. + no headline in line 1, this function will act as if called with prefix arg + (C-u TAB, same as S-TAB) also when called without prefix arg. But only if also the variable `org-cycle-global-at-bob' is t." (interactive "P") (org-load-modules-maybe) @@ -5798,7 +5799,7 @@ in special contexts. (if nstars (format "\\{1,%d\\}" nstars) "+") " \\|\\([ \t]*\\)\\([-+*]\\|[0-9]+[.)]\\) \\)")) (t (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))) - (bob-special (and org-cycle-global-at-bob (bobp) + (bob-special (and org-cycle-global-at-bob (not arg) (bobp) (not (looking-at outline-regexp)))) (org-cycle-hook (if bob-special ============================================================ Michael