unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Kevin Rodgers <ihs_4664@yahoo.com>
Subject: Re: Java support in 21.3
Date: Tue, 11 Jan 2005 13:11:11 -0700	[thread overview]
Message-ID: <34iq73F4a96ptU1@individual.net> (raw)
In-Reply-To: <crujuv$n3h$1@prometheus.acsu.buffalo.edu>

Jim Perrin wrote:
 > Please forgive me if I ask a question that has been answered previously
 > (even many times before)...
 >
 > I am trying to upgrade to 21.3, but my .emacs file from 20.3 is not
 > working.  When it loads, it gives me an error:
 >
 > ////////
 > An error has occurred while loading `c:/_emacs':
 >
 > Symbol's value as variable is void: senator-minor-mode
 >
 > To ensure normal operation, you should investigate the cause
 > of the error in your initialization file and remove it.  Start
 > Emacs with the `--debug-init' option to view a complete error
 > backtrace
 > ///////
 >
 > The file works fine for my old version.  I try to find a new version of
 > the .emacs file, but I am having a hard time understanding it.  The root
 > of the problem is that Emacs has to look as close as possible on windows
 > as it already looks on the unix systems we have here.  So, not
 > understanding what alot of the options mean, how do I change my current
 > .emacs file to work with 21.3?  Below is a copy of my current file:
...
 > (setq load-path
 >       (nconc
 >        '(
 >      "~/emacs-20.7/site-lisp/elib-1.0"
 >      "~/emacs-20.7/site-lisp/semantic-1.3.2"
 >      "~/emacs-20.7/site-lisp/speedbar-0.13a"
 >      "~/emacs-20.7/site-lisp/eieio-0.15"
 >      "~/emacs-20.7/site-lisp/jde-2.2.6/lisp"
 >      )
 >        load-path))

Well, that might be a problem when running 21.3.  I would copy the
~/emacs-20.7 directory tree to ~/emacs-21.3, recompile all the .elc
files, and change the above to use the correct version:

(setq load-path
       (nconc (mapcar (lambda (subdir)
                        (format "~/emacs-%d.%d/%s"
                                emacs-major-version
                                emacs-minor-version
                                subdir))
                      '("elib-1.0"
                        "semantic-1.3.2"
                        "speedbar-0.13a"
                        "eieio-0.15"
                        "jde-2.2.6/lisp"))
              load-path))

-- 
Kevin Rodgers

      parent reply	other threads:[~2005-01-11 20:11 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-01-10 19:02 Java support in 21.3 Jim Perrin
2005-01-10 22:07 ` James Davidson
2005-01-11 20:11 ` Kevin Rodgers [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=34iq73F4a96ptU1@individual.net \
    --to=ihs_4664@yahoo.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).