I want to use the package org-fstree
(MELPA Link).
But in a file when I press C-c C-c
at
#+BEGIN_FSTREE: ~/
I get the following error:
Symbol's function definition is void: reduce
I am not sure if I installed the package correctly (this is the first time I am using MELPA
). So here is all the information that I feel may be relevant:
I added the MELPA repository
by adding the following to my ~/.emacs
:
(when (>= emacs-major-version 24)
(require 'package)
(add-to-list
'package-archives
;; '("melpa" . "http://stable.melpa.org/packages/") ; many packages won't show if using stable
'("melpa" . "http://melpa.milkbox.net/packages/")
t))
Then I restarted Emacs
. I pressed M-x list-packages
and pressed i
at org-fstree
to mark it for installation and pressed x
to complete the installation.
I got the following warnings:
In org-fstree-extract-path-from-headline:
org-fstree.el:271:21:Warning: reference to free variable
`org-fstree-heading-regexp'
In end of data:
org-fstree.el:311:1:Warning: the following functions are not known to be defined: reduce,
org-columns-quit
Then I added the following lines to my ~/.emacs
:
;; org-fstree
(add-to-list 'load-path "~/.emacs.d/elpa/org-fstree-20090723.819/")
(require 'org-fstree)
I got the above mentioned error after these steps.
Please advice me on what to do?