Joakim Verona writes:
> I have this in my .emacs:
> '(semanticdb-default-save-directory "$HOME/semantic")
> added with a normal customize operation.
> However, files do not appear there.
Mmh, what exactly appears in your ~/.emacs.el? If it's exactly
what you show above, it's normal. This creates a list, of two
elements, a symbol and a string, and then throw away this list.
Maybe you can make your ~/.emacs.el available on the web, at
least temporarily, in order to have a look at it.
You can simply use this:
(setq semanticdb-default-save-directory "~/semantic")
--drkm
|