Hi Jean, > Jean Louis writes: > I have tried to do > > $ make src > $ make bin
make src and make bin is for building hyperbole in place and running it from there. It is documented in the Makefile. # To setup Hyperbole to run directly from the latest test source # code, use: # git clone http://git.savannah.gnu.org/r/hyperbole.git # cd hyperbole # Then use either: # make src - setup to run directly from .el files # or # make bin - setup to build and run from .elc files What it does not say there is that you need to set your load-path to include the hyperbole folder where you cloned it. I have this setup to run from the cloned folder (~/src/hyperbole) (add-to-list 'load-path "~/src/hyperbole") (load "hyperbole-autoloads") (load "hversion") (load "hyperbole") You should then be able to get updates by running: git pull make src or make bin <restart emacs> Yours -- %% Mats
