From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: [PATCH] Make the point visible when jumping to the mark Date: Wed, 21 May 2014 15:00:36 +0200 Message-ID: <87lhtvwakr.fsf@bzg.ath.cx> References: <874n1aq9y5.fsf@treetowl.lan> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54717) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wn68S-0000JN-QM for emacs-orgmode@gnu.org; Wed, 21 May 2014 09:00:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wn68O-0006G0-4u for emacs-orgmode@gnu.org; Wed, 21 May 2014 09:00:44 -0400 Received: from mail-wi0-x234.google.com ([2a00:1450:400c:c05::234]:39584) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wn68N-0006Fl-QV for emacs-orgmode@gnu.org; Wed, 21 May 2014 09:00:40 -0400 Received: by mail-wi0-f180.google.com with SMTP id hi2so2704428wib.13 for ; Wed, 21 May 2014 06:00:38 -0700 (PDT) In-Reply-To: <874n1aq9y5.fsf@treetowl.lan> (Ian Kelling's message of "Wed, 30 Apr 2014 21:54:08 -0700") 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: Ian Kelling Cc: emacs-orgmode@gnu.org Hi Ian, Please send me your public key so that I can give you access to the org-mode and worg repositories. Ian Kelling writes: > From 9191e4a364e251119cf8b7c72e41f6c0d09583f2 Mon Sep 17 00:00:00 2001 > Message-ID: <87ha5aqa93.fsf@treetowl.lan> > MIME-Version: 1.0 > Content-Type: text/plain > > *lisp/org.el: Advise commands which jump to the mark The formatting of the Changelog message not good. It should be * org.el: Advise commands which jump to the mark. See http://orgmode.org/worg/org-contribute.html and example in the git logs. > +(eval-after-load "simple" > + '(defadvice set-mark-command (after org-make-visible activate) > + "Make the point visible with `org-show-context'." > + (org-mark-jump-unhide))) Why this one? The user don't want to use C-SPC in hidden parts. > +(eval-after-load "simple" > + '(defadvice exchange-point-and-mark (after org-make-visible activate) > + "Make the point visible with `org-show-context'." > + (org-mark-jump-unhide))) > +(eval-after-load "simple" > + '(defadvice pop-global-mark (after org-make-visible activate) > + "Make the point visible with `org-show-context'." > + (org-mark-jump-unhide))) This two ones are good, yes. Thanks, -- Bastien