all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* suppress loading .emacs
@ 2004-05-10 21:44 Micha Feigin
  0 siblings, 0 replies; 7+ messages in thread
From: Micha Feigin @ 2004-05-10 21:44 UTC (permalink / raw)


What command line option can I use to suppress loading .emacs?

I am using -u nobody now but it seems like a workaround, is there a
better solution?

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: suppress loading .emacs
       [not found] <mailman.4426.1084225652.1061.help-gnu-emacs@gnu.org>
@ 2004-05-10 22:41 ` Barry Margolin
  2004-05-11  6:21   ` Matthieu Moy
  0 siblings, 1 reply; 7+ messages in thread
From: Barry Margolin @ 2004-05-10 22:41 UTC (permalink / raw)


In article <mailman.4426.1084225652.1061.help-gnu-emacs@gnu.org>,
 Micha Feigin <michf@post.tau.ac.il> wrote:

> What command line option can I use to suppress loading .emacs?

-q

-- 
Barry Margolin, barmar@alum.mit.edu
Arlington, MA
*** PLEASE post questions in newsgroups, not directly to me ***

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: suppress loading .emacs
  2004-05-10 22:41 ` suppress loading .emacs Barry Margolin
@ 2004-05-11  6:21   ` Matthieu Moy
  2004-05-11  6:50     ` Carsten Weinberg
  0 siblings, 1 reply; 7+ messages in thread
From: Matthieu Moy @ 2004-05-11  6:21 UTC (permalink / raw)


Barry Margolin <barmar@alum.mit.edu> writes:

> In article <mailman.4426.1084225652.1061.help-gnu-emacs@gnu.org>,
>  Micha Feigin <michf@post.tau.ac.il> wrote:
>
>> What command line option can I use to suppress loading .emacs?
>
> -q

and --no-site-file is not very far away ... 

-- 
Matthieu

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: suppress loading .emacs
  2004-05-11  6:21   ` Matthieu Moy
@ 2004-05-11  6:50     ` Carsten Weinberg
  2004-05-11 11:13       ` michf
       [not found]       ` <mailman.4561.1084275609.1061.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 7+ messages in thread
From: Carsten Weinberg @ 2004-05-11  6:50 UTC (permalink / raw)


On Tue, 11 May 2004 08:21:08 +0200
Matthieu Moy <MatthieuNOSPAM.Moy@imag.fr.invalid> wrote:

>and --no-site-file is not very far away ... 


the closest of all is 'emacs --help' ;-)

-Carsten

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: suppress loading .emacs
  2004-05-11  6:50     ` Carsten Weinberg
@ 2004-05-11 11:13       ` michf
       [not found]       ` <mailman.4561.1084275609.1061.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 7+ messages in thread
From: michf @ 2004-05-11 11:13 UTC (permalink / raw)


Quoting Carsten Weinberg <cweinberg@firemail.de>:

> On Tue, 11 May 2004 08:21:08 +0200
> Matthieu Moy <MatthieuNOSPAM.Moy@imag.fr.invalid> wrote:
>
> >and --no-site-file is not very far away ...
>
>
> the closest of all is 'emacs --help' ;-)
>

Sorry, I looked at the info as far as I recall (I don't think it was the man
page since it doesn't really say anything about the options) and I didn't see
it. Maybe it was at the wrong hour of the night again ;-)

I do feel stupid since in the info page it is right above --no-site-file. I
guess I sometimes miss the obvious since I run into some option somewhere and
later when I remember I want something close I think I already went to the
obvious places, or I am just looking at things at 4am at which point I don't
actually understand what I read anyway >|-)

Thanks for the replies though.

> -Carsten
>
>
> _______________________________________________
> Help-gnu-emacs mailing list
> Help-gnu-emacs@gnu.org
> http://mail.gnu.org/mailman/listinfo/help-gnu-emacs
>
>  +++++++++++++++++++++++++++++++++++++++++++
>  This Mail Was Scanned By Mail-seCure System
>  at the Tel-Aviv University CC.
>




----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: suppress loading .emacs
       [not found]       ` <mailman.4561.1084275609.1061.help-gnu-emacs@gnu.org>
@ 2004-05-11 20:59         ` Matthieu Moy
  2004-05-12  1:33           ` Micha Feigin
  0 siblings, 1 reply; 7+ messages in thread
From: Matthieu Moy @ 2004-05-11 20:59 UTC (permalink / raw)


michf@post.tau.ac.il writes:

> Sorry, I looked at the info as far as I recall (I don't think it was the man
> page since it doesn't really say anything about the options)

$ man emacs | grep "init file"
Reformatting emacs(1), please wait... 
       -q Do not load an init file. 
       -u user Load user's init file. 
$ _

;-)

-- 
Matthieu

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: suppress loading .emacs
  2004-05-11 20:59         ` Matthieu Moy
@ 2004-05-12  1:33           ` Micha Feigin
  0 siblings, 0 replies; 7+ messages in thread
From: Micha Feigin @ 2004-05-12  1:33 UTC (permalink / raw)


On Tue, May 11, 2004 at 10:59:03PM +0200, Matthieu Moy wrote:
> michf@post.tau.ac.il writes:
> 
> > Sorry, I looked at the info as far as I recall (I don't think it was the man
> > page since it doesn't really say anything about the options)
> 
> $ man emacs | grep "init file"
> Reformatting emacs(1), please wait... 
>        -q Do not load an init file. 
>        -u user Load user's init file. 
> $ _
> 

It makes since now, I was looking at the man page but I looked for
.emacs and not init file. I guess "Do not load an init file" didn't
catch my eye as "Do not load the user's .emacs init file" ;-)

It does seem like I do need to improve either my reading,
concentration or searching skills :-@

> ;-)
> 
> -- 
> Matthieu
> _______________________________________________
> Help-gnu-emacs mailing list
> Help-gnu-emacs@gnu.org
> http://mail.gnu.org/mailman/listinfo/help-gnu-emacs
>  
>  +++++++++++++++++++++++++++++++++++++++++++
>  This Mail Was Scanned By Mail-seCure System
>  at the Tel-Aviv University CC.
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2004-05-12  1:33 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.4426.1084225652.1061.help-gnu-emacs@gnu.org>
2004-05-10 22:41 ` suppress loading .emacs Barry Margolin
2004-05-11  6:21   ` Matthieu Moy
2004-05-11  6:50     ` Carsten Weinberg
2004-05-11 11:13       ` michf
     [not found]       ` <mailman.4561.1084275609.1061.help-gnu-emacs@gnu.org>
2004-05-11 20:59         ` Matthieu Moy
2004-05-12  1:33           ` Micha Feigin
2004-05-10 21:44 Micha Feigin

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.