From mboxrd@z Thu Jan 1 00:00:00 1970 From: francois Subject: Re: org mode and reftex Date: Fri, 13 Jul 2007 11:16:55 +0000 (UTC) Message-ID: References: <57102278d9c24eb3221bb0f00d49352b@science.uva.nl> <3b8d86984febb43bd550fa8f7f78a53c@science.uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I9J92-00066K-9t for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 07:17:08 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I9J8z-000665-V5 for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 07:17:07 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I9J8z-000662-Pg for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 07:17:05 -0400 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1I9J8z-0005rW-Ez for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 07:17:05 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1I9J8x-0002ii-2q for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 13:17:03 +0200 Received: from is003308.saclay.cea.fr ([132.166.134.48]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 Jul 2007 13:17:03 +0200 Received: from francois.temp1 by is003308.saclay.cea.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 Jul 2007 13:17:03 +0200 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: emacs-orgmode@gnu.org Carsten Dominik science.uva.nl> writes: > How about > (and (buffer-file-name) > (file-exists-p (buffer-file-name)) > (reftex-parse-all)) hi, I have still the same error. It seems that the cause is not reftex-parse-all. Even removed, i am facing with same problem. Here is my minimalist org-mode-setup hook. (defun my-org-mode-setup () (load-library "reftex") (reftex-set-cite-format '((?b . "[[bib::%l]]") (?n . "[[note::%l]]") (?c . "\\cite{%l}"))) (define-key org-mode-map "\C-c\C-g" 'reftex-citation) (flyspell-mode) ) did I do something wrong?