Am 25.5.2014 schrieb Mosè Giordano:
> Hi Salome,
> 
> 2014-05-24 16:06 GMT+02:00 Salome =?iso-8859-1?Q?S=F6dergran
> <[email protected]>:
> > With lots of try-and-error I managed to solve my problem with:
> >>  Error: (error "Recursive `require' for feature `tex-site'")
> > .
> > I think the two decisive things were the following:
> >
> > 1st, adding the auctex-path explicitly to the load path:
> >   (add-to-list 'load-path "~/.emacs.d/elpa/auctex-11.87.5")
> >
> >   2nd, putting (require 'tex-site) in the right place, e.g. /before/
> >   (require 'package)
> >   (package-initialize)
> >
> > Everything's up and running again :-)
> > Salome
> 
> if you install a package using the Emacs package manager you don't
> need to load it using a `require'.
> 
> Bye,
> Mosè

With this minimal init-file everything works fine:

   (setq debug-on-error t)
   (add-to-list 'load-path "~/.emacs.d/elpa/auctex-11.87.5")
   (require 'tex-site)
   (require 'package)
   (package-initialize)

Both the auctex-path and require are needed before the package-functions.
What would I have to change to make AUCTeX work without (require 'tex-site)?

greets, salome

_______________________________________________
bug-auctex mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-auctex

Reply via email to