emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: John Kitchin <jkitchin@andrew.cmu.edu>
To: John Kitchin <jkitchin@andrew.cmu.edu>,
	"emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: org-ref code
Date: Thu, 15 May 2014 09:05:18 -0400	[thread overview]
Message-ID: <CAJ51ETpKdQztPpeg8ogwd3Ja0s0aEOTjtGJUX8jNTU5NX2_Pkg@mail.gmail.com> (raw)
In-Reply-To: <87tx8rpib1.fsf@ucl.ac.uk>

[-- Attachment #1: Type: text/plain, Size: 3503 bytes --]

That is pretty strange. I used this to get a minimally working install of
org-ref. I deleted ~/.emacs.d, and ran emacs -q and then executed this code
block.

* installation

You need the dash package. Use these repositories, and  install dash.

#+BEGIN_SRC emacs-lisp
  (require 'package)

  (setq package-archives
        '(("org"         . "http://orgmode.org/elpa/")
          ("gnu"         . "http://elpa.gnu.org/packages/")
          ("melpa" . "http://melpa.milkbox.net/packages/")
          ))
  (package-refresh-contents)
  (package-install 'dash)

  (org-babel-load-file "~/Dropbox/kitchingroup/jmax/org-ref.org")

  ;; this function is normally run as a hook. we run it manually here to
  ;; get started.
  (org-mode-reftex-setup)
#+END_SRC

#+RESULTS:
: org-ref-insert-cite-link

After that, it works like I expect.

Your error seems to be coming from reftex. I wonder if you have something
set that is making it look for a TeX-master or something, which eventually
results in nil, which is failing here: re-search-forward(nil 10001 t). Or
maybe you need to set something to turn that off. Perhaps some default
changed?


John

-----------------------------------
John Kitchin
Associate Professor
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
http://kitchingroup.cheme.cmu.edu



On Thu, May 15, 2014 at 4:17 AM, Eric S Fraga <e.fraga@ucl.ac.uk> wrote:

> John,
>
> I am in the process of bisecting my initialisation.  Something I have
> set definitely stops org (whether 8.2.5c which comes with emacs
> 24.4.50.2 or 8.2.6-958) from recognising cite:... etc. as links.
>
> However, I have been re-building up from no initialisation bit by
> bit.  Right from the start, I get the error I posted yesterday:
>
> --8<---------------cut here---------------start------------->8---
> Debugger entered--Lisp error: (wrong-type-argument stringp nil)
>   re-search-forward(nil 10001 t)
>   tex-main-file()
>   reftex-TeX-master-file()
>   reftex-tie-multifile-symbols()
>   reftex-access-scan-info((16))
>   reftex-parse-all()
>   (and (buffer-file-name) (file-exists-p (buffer-file-name))
> (global-auto-revert-mode t) (reftex-parse-all))
>   org-mode-reftex-setup()
>   run-hooks(change-major-mode-after-body-hook text-mode-hook
> outline-mode-hook org-mode-hook)
>   apply(run-hooks (change-major-mode-after-body-hook text-mode-hook
> outline-mode-hook org-mode-hook))
>   run-mode-hooks(org-mode-hook)
>   org-mode()
>   set-auto-mode-0(org-mode nil)
>   set-auto-mode()
>   normal-mode(t)
>   after-find-file(nil t)
>   find-file-noselect-1(#<buffer t.org> "~/s/test/t.org" nil nil
> "~/synced/test/t.org" (10095713 2055))
>   find-file-noselect("~/s/test/t.org" nil nil t)
>   find-file("~/s/test/t.org" t)
>   call-interactively(find-file nil nil)
>   command-execute(find-file)
> --8<---------------cut here---------------end--------------->8---
>
> This happens when I try to visit any org file *once* I have loaded
> org-ref the first time.  It doesn't happen before org-ref is loaded.
>
> I am starting to despair, I must admit!  I wonder if there is a conflict
> between Emacs 24.4.50 and org-ref?  Or do you have some other setting
> for reftex that is not the default?
>
> Anyway, I have to get some work done so I will do without org-ref for
> the time being.  I'll revisit later.
>
> thanks again for all your time,
> eric
>
> --
> : Eric S Fraga (0xFFFCF67D), Emacs 24.4.50.2, Org
> release_8.2.6-958-g7c8559-git
>

[-- Attachment #2: Type: text/html, Size: 4921 bytes --]

  reply	other threads:[~2014-05-15 13:05 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-30 20:59 org-ref code John Kitchin
2014-05-01  6:23 ` Eric S Fraga
2014-05-01 10:01 ` Eric S Fraga
2014-05-01 12:21   ` Seb Frank
2014-05-01 14:08     ` Eric S Fraga
2014-05-01 12:36   ` John Kitchin
2014-05-01 12:47     ` John Kitchin
2014-05-01 13:30       ` Eric S Fraga
2014-05-01 17:07         ` John Kitchin
2014-05-10 14:44           ` Eric S Fraga
2014-05-11 18:48             ` John Kitchin
2014-05-12  8:12               ` Andreas Reuleaux
2014-05-13  2:37                 ` John Kitchin
2014-05-12 13:36               ` Eric S Fraga
2014-05-12 17:20                 ` Andreas Reuleaux
2014-05-12 17:26                   ` John Kitchin
2014-05-13  0:03                     ` Andreas Reuleaux
2014-05-13 11:00                     ` Eric S Fraga
2014-05-13 18:51                       ` John Kitchin
2014-05-13 20:01                         ` Eric S Fraga
2014-05-13 20:11                         ` Eric S Fraga
2014-05-14  0:28                           ` John Kitchin
2014-05-14 18:17                             ` Eric S Fraga
2014-05-14 19:03                               ` Andreas Reuleaux
2014-05-14 19:48                                 ` Sharon Kimble
2014-05-14 20:08                                   ` Andreas Reuleaux
2014-05-14 22:14                                 ` Eric S Fraga
2014-05-14 20:35                               ` John Kitchin
2014-05-15  6:58                                 ` Eric S Fraga
2014-05-15  8:17                                   ` Eric S Fraga
2014-05-15 13:05                                     ` John Kitchin [this message]
2014-05-15 13:14                                       ` Eric S Fraga
2014-05-15 13:30                                       ` Eric S Fraga
2014-05-15 14:19                                         ` John Kitchin
2014-05-15 14:31                                           ` Eric S Fraga
2014-05-15 15:03                                             ` Eric S Fraga
2014-05-15 13:15                                   ` John Kitchin
2014-05-14  3:58                           ` Andreas Reuleaux
2014-05-14 13:17                             ` John Kitchin
2014-05-13 23:33                         ` Andreas Reuleaux
2014-05-14  0:38                           ` John Kitchin
2014-05-14  3:39                             ` Andreas Reuleaux
2014-05-14 13:14                               ` John Kitchin
2014-05-14 17:39                                 ` Andreas Reuleaux
2014-05-18 17:16                             ` org-ref for biblatex Andreas Reuleaux
2014-05-18 21:40                               ` John Kitchin
2014-05-18 22:38                                 ` Andreas Reuleaux
2014-05-19 11:38                                   ` John Kitchin
2014-05-19 12:15                                     ` Andreas Reuleaux
2014-05-19 17:34                                 ` Andreas Reuleaux
2014-05-08  8:31 ` org-ref code Vikas Rawal
2014-05-08 13:53   ` John Kitchin
2014-05-15 10:09     ` Bastien

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAJ51ETpKdQztPpeg8ogwd3Ja0s0aEOTjtGJUX8jNTU5NX2_Pkg@mail.gmail.com \
    --to=jkitchin@andrew.cmu.edu \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).