From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Jolitz Subject: Re: org-element-context doesn't parse consistently link with spaces Date: Wed, 05 Mar 2014 16:35:17 +0100 Message-ID: <8738iw7j62.fsf@gmail.com> References: <87wqgabb08.fsf@tanger.home> <87ha7clqz3.fsf@gmail.com> <87r46gahs2.fsf@tanger.home> <877g88lpwp.fsf@gmail.com> <87mwh4ag4y.fsf@tanger.home> <8738iwlo3c.fsf@gmail.com> <87ob1kpvm0.fsf@bzg.ath.cx> <87eh2gaf06.fsf@tanger.home> <87bnxkpu31.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44389) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WLDq7-0001oT-Sx for emacs-orgmode@gnu.org; Wed, 05 Mar 2014 10:34:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WLDq0-0005Jj-Tf for emacs-orgmode@gnu.org; Wed, 05 Mar 2014 10:34:35 -0500 Received: from plane.gmane.org ([80.91.229.3]:58523) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WLDq0-0005Jb-NG for emacs-orgmode@gnu.org; Wed, 05 Mar 2014 10:34:28 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WLDpx-0003jC-S3 for emacs-orgmode@gnu.org; Wed, 05 Mar 2014 16:34:25 +0100 Received: from g231111181.adsl.alicedsl.de ([92.231.111.181]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 05 Mar 2014 16:34:25 +0100 Received: from tjolitz by g231111181.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 05 Mar 2014 16:34:25 +0100 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@gnu.org Bastien writes: > Daimrod writes: > >> Awww that's tricky, M-x org-version doesn't have the same behavior than >> M-: (org-version) > > That's on purpose: (org-version) is what you want to call in a > program, hence the short version, while M-x org-version RET is what > you want to call interactively (hence the longer one.) Now I understand this annoying behaviour - whenever I wrote a function for quick insertion of system-info into a mail I only got the short version but wanted the long one. So it must be #+begin_src emacs-lisp (call-interactively 'org-version) #+end_src #+results: : Org-mode version 8.2.5g (release_8.2.5g-564-ge45d13 @ /usr/share/emacs/24.3/lisp/org/lisp/) instead of #+begin_src emacs-lisp (org-version) #+end_src #+results: : 8.2.5g -- cheers, Thorsten