Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10.1 6/24/83; site mit-athena.ARPA
Path: utzoo!watmath!clyde!bonnie!akgua!sdcsvax!dcdwest!ittvax!decvax!mit-athena!martillo
From: martillo@mit-athena.ARPA (Joaquim Martillo)
Newsgroups: net.emacs
Subject: Re: Loading CCAEmacs .elisp_init
Message-ID: <63@mit-athena.ARPA>
Date: Sat, 8-Dec-84 21:19:34 EST
Article-I.D.: mit-athe.63
Posted: Sat Dec  8 21:19:34 1984
Date-Received: Wed, 12-Dec-84 04:05:30 EST
References: <59@mit-athena.ARPA>, <584@godot.UUCP>, <62@mit-athena.ARPA>
Organization: MIT, Project Athena, Cambridge, Ma.
Lines: 18

The necessary code so that the full path-name files can be properly
extended and the .elisp_init file can be loaded without the extension is

	if(!strcmp(rindex(Get_string_chars(name, '/')), "/.elisp_init"))
	{
		goto no_extension;
	}

.

This would substitute for the unconditional goto in my original fix.

Without either flavor of goto no_extension, but with the previously posted
load fix emacs would try to load .elisp_init and elisp would load 
.elisp_init.l.  I think there would be no need without the changes I
suggested to have a .elisp_init file.  Actually, I prefer Massars's
documentation change.  CCAEmacs has too many strcmp's as it is.