[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[O] gnuplot export: Symbol's value as variable is void: org-export-filte
From: |
Tobias Frischholz |
Subject: |
[O] gnuplot export: Symbol's value as variable is void: org-export-filters-alist |
Date: |
Sun, 30 Aug 2015 00:34:36 +0200 |
Hi List,
I have a hard time getting gnuplot to run.
Right now I've done a C-c " g on this table:
#+PLOT: title:"Citas" ind:1 deps:(3) type:2d with:histograms set:"yrange
[0:]"
| Sede | Max cites | H-index |
|-----------+-----------+---------|
| Chile | 257.72 | 21.39 |
| Leeds | 165.77 | 19.68 |
| Sao Paolo | 71.00 | 11.50 |
| Stockholm | 134.19 | 14.33 |
| Morelia | 257.56 | 17.67 |
I get this in *Messages*:
gnuplot-mode 0.7-beta -- determining gnuplot version ......
gnuplot-mode 0.7-beta (gnuplot 5.0) -- report bugs with "C-c C-u"
Starting gnuplot plotting program...Done
When I want to export that file with C-c C-e l o I get this weird error:
org-export-as: Symbol's value as variable is void:
org-export-filters-alist
Heres's my init.el:
(setq user-full-name "Tobias Frischholz"
user-mail-address "address@hidden")
(package-initialize)
;; https://github.com/purcell/exec-path-from-shell
(when (memq window-system '(mac ns))
(exec-path-from-shell-initialize))
(require 'org)
(require 'org-install)
(add-to-list 'org-modules "org-habit")
(setq org-todo-keywords
'((sequence "TODO(t)" "WAIT(w@/!)" "|" "DONE(d!)"
"CANCELED(c@)")))
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cc" 'org-capture)
(setq org-default-notes-file "~/org/organizer.org")
(global-set-key (kbd "C-c o")
(lambda () (interactive) (find-file
"~/org/organizer.org")))
(global-set-key "\C-cb" 'org-iswitchb)
(setq org-agenda-files (list "~/org/organizer.org"))
(setq org-feed-alist
'(("Hacker News"
"https://news.ycombinator.com/rss"
"~/org/feeds.org" "Hacker News Entries")
("SZ"
"http://rss.sueddeutsche.de/app/service/rss/alles/index.rss?output=rss"
"~/org/feeds.org" "SZ Entries")))
(require 'package)
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/"))
(add-to-list 'load-path "~/elisp/erc")
(require 'erc)
(add-to-list 'load-path "~/.elisp/gnuplot-mode/")
(require 'gnuplot)
(setq inhibit-startup-message t)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(custom-enabled-themes (quote (sanityinc-solarized-light)))
'(custom-safe-themes
(quote
("4aee8551b53a43a883cb0b7f3255d6859d766b6c5e14bcb01bed572fcbef4328"
"4cf3221feff536e2b3385209e9b9dc4c2e0818a69a1cdb4b522756bcdf4e00a4"
default))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
--
Tobi
PGP PUBLIC KEY: http://pgp.mit.edu/pks/lookup?search=0xCD463AC1&op=index
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [O] gnuplot export: Symbol's value as variable is void: org-export-filters-alist,
Tobias Frischholz <=