From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kaushal Modi Subject: org-capture templates broken? Date: Tue, 3 Nov 2015 12:08:21 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39201) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ztf4w-0001Zg-TG for emacs-orgmode@gnu.org; Tue, 03 Nov 2015 12:09:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ztf4v-0002jY-Ij for emacs-orgmode@gnu.org; Tue, 03 Nov 2015 12:09:02 -0500 Received: from mail-oi0-x22b.google.com ([2607:f8b0:4003:c06::22b]:36780) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ztf4v-0002jH-DY for emacs-orgmode@gnu.org; Tue, 03 Nov 2015 12:09:01 -0500 Received: by oiao187 with SMTP id o187so12550379oia.3 for ; Tue, 03 Nov 2015 09:09:00 -0800 (PST) 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-org list Hi all, I am on the following build of emacs: Emacs version: GNU Emacs 25.0.50.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.23) of 2015-11-02, built using commit 5401bb8645f955b6fde8c0a5e5c8cf5ec1cab626. ./configure options: --prefix=/home/kmodi/usr_local/apps/6/emacs/master 'CPPFLAGS=-fgnu89-inline -I/home/kmodi/usr_local/6/include -I/usr/include/freetype2 -I/usr/include' 'CFLAGS=-ggdb3 -O0' 'CXXFLAGS=-ggdb3 -O0' 'LDFLAGS=-L/home/kmodi/usr_local/6/lib -L/home/kmodi/usr_local/6/lib64 -ggdb3' Features: XPM JPEG TIFF GIF PNG RSVG IMAGEMAGICK SOUND GPM DBUS GCONF GSETTINGS NOTIFY ACL LIBSELINUX GNUTLS LIBXML2 FREETYPE LIBOTF XFT ZLIB TOOLKIT_SCROLL_BARS GTK2 X11 Org version: Org-mode version 8.3.2 (release_8.3.2-254-g061112 @ /home/kmodi/usr_local/apps/6/emacs/master/share/emacs/site-lisp/org/) This is how I set my org capture template: (setq org-capture-templates '(("j" "Journal" entry ; `org-capture' binding + j (file+datetree (expand-file-name "journal.org" org-directory)) "\n* %?\n Entered on %U") ("n" "Note" entry ; `org-capture' binding + n (file (expand-file-name "notes.org" org-directory)) "\n* %?\n Context:\n %i\n Entered on %U") ("u" "UVM/System Verilog Notes" ; `org-capture' binding + u entry (file (expand-file-name "uvm.org" org-directory)) "\n* %?\n Context:\n %i\n Entered on %U"))) I use org-capture almost every other day. So I can confirm that all those file paths are valid. I udpated to the latest git version of org-mode yesterday (and I updated to the latest today too). But today is the first time I tried to use org-capture this week. When I do M-x org-capture, I see the capture template selection buffer fine. But when I hit any key to one of the templates (for example: 'j' or 'n'), I get this error: Debugger entered--Lisp error: (error "Capture abort: (file-error Cannot open load file No such file or directory org-eldoc)") signal(error ("Capture abort: (file-error Cannot open load file No such file or directory org-eldoc)")) error("Capture abort: %s" (file-error "Cannot open load file" "No such file or directory" "org-eldoc")) org-capture(nil) funcall-interactively(org-capture nil) call-interactively(org-capture nil nil) command-execute(org-capture) The backtrace is surprisingly short and I couldn't understand why it fails. Also org-eldoc is in contrib and I don't include it in my compilation. So I don't know what org-capture has to do with org-eldoc. Is org-capture template selection working fine for anyone on the latest build as of today? -- Kaushal Modi