From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Hannon Subject: Conflict between Org-Mode versions? Date: Wed, 27 Apr 2011 13:10:55 -0700 (PDT) Message-ID: <617335.71813.qm@web161902.mail.bf1.yahoo.com> Reply-To: Michael Hannon Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:34133) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QFB4b-0000SD-Nc for emacs-orgmode@gnu.org; Wed, 27 Apr 2011 16:10:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QFB4a-0005OK-E9 for emacs-orgmode@gnu.org; Wed, 27 Apr 2011 16:10:57 -0400 Received: from nm29-vm0.bullet.mail.bf1.yahoo.com ([98.139.213.166]:43632) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1QFB4a-0005OF-AN for emacs-orgmode@gnu.org; Wed, 27 Apr 2011 16:10:56 -0400 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: Org-Mode List Greetings. =A0I'm trying to learn about Org-Mode. =A0My goal is mainly to l= earn to=0Ause the Babel extension, but I'm trying to get a good feel for Or= g-Mode before=0AI do that.=0A=0AI've been having some difficulties with inc= onsistencies between the behavior=0Adescribed in Org-Mode tutorials and the= behavior of Org-Mode on my system.=0A(And yes, I have read the FAQ about t= his; please bear with me.)=0A=0AI'm running Emacs 23.2.1 on a Fedora 14 lin= ux (64-bit) system. =A0This version=0Aof Emacs came with Org-Mode 6.x insta= lled.=0A=0AHaving read about the rapid evolution of Org-Mode, I downloaded = the latest=0Astable version, 7.5. =A0I've appended the Org-related portion = of my .emacs file.=0AIt appears to me that my local (7.5) version of Org-Mo= de should supersede the=0Aversion (6.x) that came in the Fedora package, i.= e., based on the position in=0A"load-path".=0A=0AThis made things a little = saner, but it didn't eliminate the inconsistencies.=0AI was afraid that, de= spite the above, there might be some interplay between=0Athe original Org-M= ode and the version that I downloaded, so I removed the=0Aentire org direct= ory:=0A=0A=A0=A0 =A0/usr/share/emacs/23.2/lisp/org=0A=0AIs there something = else that I can/should do to make sure that the original=0AOrg-Mode is real= ly gone?=0A=0AHere are a couple of the inconsistencies to which I've been r= eferring:=0A=0A=A0=A0 =A0(1) When I use C-c C-t to mark a task as DONE, no = timestamp appears.=0A=0A=A0=A0 =A0(2) When I use the construct:=0A=0A=A0=A0= =A0 =A0 =A0 =A0 =A0[[URL] [description]]=0A=0A=A0=A0 =A0 =A0 =A0the line d= oes NOT collapse to:=0A=0A=A0=A0 =A0 =A0 =A0 =A0 =A0"description"=0A=0A=A0= =A0 =A0 =A0 =A0when I add the closing bracket, and if I export to HTML or P= DF, I=0A=A0=A0 =A0 =A0 =A0get the whole ugly line, brackets and all.=0A=0AP= lease understand that I don't have any burning need to solve these exact=0A= problems. =A0I'd just like the tutorial material to work as advertised on m= y=0Asystem.=0A=0AThanks for any advice you can provide.=0A=0A-- Mike=0A=0AA= ppendix: The part of my .emacs file that pertains to Org-Mode=0A-----------= ---------------------------------------------------=0A=0A(setq load-path (c= ons "/usr/local/org/org-7.5/lisp" load-path))=0A(setq load-path (cons "/usr= /local/org/org-7.5/contrib/lisp" load-path))=0A(require 'org-install)=0A=0A= (org-babel-do-load-languages=0A=A0=A0'org-babel-load-languages=0A=A0=A0'((e= macs-lisp . t)=0A=A0=A0 =A0(R . t)=0A=A0=A0 =A0(python . t)=0A=A0=A0 =A0(sh= . t)=0A=A0=A0 )=0A)=0A=0A(require 'ob-R)=0A(require 'ob-python)=0A(require= 'ob-sh)=0A=0A(defun my-org-confirm-babel-evaluate (lang body)=0A=A0=A0 =A0= (not (or (string=3D lang "R")=0A=A0=A0 =A0 =A0 =A0 =A0 =A0 (string=3D lang = "python")=0A=A0=A0 =A0 =A0 =A0 =A0 =A0 (string=3D lang "sh")=0A=A0=A0 =A0 = =A0 =A0 )=0A=A0=A0 =A0)=0A)=0A=0A(setq org-confirm-babel-evaluate 'my-org-c= onfirm-babel-evaluate)