From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: Re: How to set C-o back to open-line? Date: Fri, 17 May 2013 17:02:43 -0500 Message-ID: <874ne1tgcc.fsf@earlgrey.lan> References: <87k3mysg8c.fsf@earlgrey.lan>, <87ip2is5ku.fsf@earlgrey.lan>, <5195C5C5.3050705@easy-emacs.de>, <87fvxlssgm.fsf@earlgrey.lan>, <87a9ntvl38.fsf@yahoo.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:34815) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UdSjo-00027F-RD for emacs-orgmode@gnu.org; Fri, 17 May 2013 18:03:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UdSjg-0005Mg-En for emacs-orgmode@gnu.org; Fri, 17 May 2013 18:02:56 -0400 Received: from li424-160.members.linode.com ([50.116.34.160]:46769 helo=dustycloud.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UdSjg-0005Ma-BQ for emacs-orgmode@gnu.org; Fri, 17 May 2013 18:02:48 -0400 In-reply-to: <87a9ntvl38.fsf@yahoo.fr> 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: Nicolas Richard Cc: emacs-orgmode@gnu.org Nicolas Richard writes: >> (setq org-open-line 'open-line) > > How could that possibly work ? It didn't... my bad :) I had both set that and done a redefinition of org-open-line to just call open-line like: (defun org-open-line (n) (interactive "*p") (open-line n)) Guess which one actually did anything ;)