From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rafael Laboissiere Subject: Fix broken URL in org-bibtex.el Date: Sun, 4 Nov 2012 09:32:16 +0100 Message-ID: <20121104083216.GX31999@laboissiere.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="tpyx7gKuSYt+mjHM" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:53286) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TUvd5-0002za-99 for emacs-orgmode@gnu.org; Sun, 04 Nov 2012 03:32:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TUvd3-0007WT-Ui for emacs-orgmode@gnu.org; Sun, 04 Nov 2012 03:32:27 -0500 Received: from xvm-168-252.ghst.net ([95.142.168.252]:39021 helo=laboissiere.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TUvd3-0007W3-Nj for emacs-orgmode@gnu.org; Sun, 04 Nov 2012 03:32:25 -0500 Content-Disposition: inline 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 --tpyx7gKuSYt+mjHM Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline The patch attached below fixes a very minor problem in org-bibtex.el. Cheers, Rafael --tpyx7gKuSYt+mjHM Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-org-bibtex.el-Fix-broken-URL.patch" >From 852681cb0789b4d1a7c0081e634322690b9ae47d Mon Sep 17 00:00:00 2001 From: Rafael Laboissiere Date: Sun, 4 Nov 2012 09:14:44 +0100 Subject: [PATCH] org-bibtex.el: Fix broken URL * lisp/org-bibtex.el: In the documentation section of the file, fix the broken URL to Andrew Roberts' document on BibTeX entries. TINYCHANGE --- lisp/org-bibtex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-bibtex.el b/lisp/org-bibtex.el index f8e07ad..cafd3bb 100644 --- a/lisp/org-bibtex.el +++ b/lisp/org-bibtex.el @@ -88,7 +88,7 @@ ;; ;; - All Bibtex information is taken from the document compiled by ;; Andrew Roberts from the Bibtex manual, available at -;; http://www.andy-roberts.net/misc/latex/sessions/bibtex/bibentries.pdf +;; http://www.andy-roberts.net/res/writing/latex/bibentries.pdf ;; ;;; History: ;; -- 1.7.10.4 --tpyx7gKuSYt+mjHM--