all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Prevent Info Screen on Emacs Startup
@ 2007-06-06 20:09 Joe Hesse
  2007-06-06 20:27 ` Robert D. Crawford
  2007-06-08 13:09 ` Ken Goldman
  0 siblings, 2 replies; 5+ messages in thread
From: Joe Hesse @ 2007-06-06 20:09 UTC (permalink / raw)
  To: help-gnu-emacs

Hi,

I have emacs 22.0.990.1.  Using Fedora 7 with Gnome.

When I start emacs from a command shell under Gnome, like:
$ emacs myfile.txt &
the emacs editor starts with an info screen.  I can get rid of the info 
screen with ctrl-l.

I would prefer that this info screen not be there and I am immediately 
editing myfile.txt.  How do I do this?

Thank you,
Joe Hesse 

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

* Re: Prevent Info Screen on Emacs Startup
  2007-06-06 20:09 Prevent Info Screen on Emacs Startup Joe Hesse
@ 2007-06-06 20:27 ` Robert D. Crawford
  2007-06-08 13:09 ` Ken Goldman
  1 sibling, 0 replies; 5+ messages in thread
From: Robert D. Crawford @ 2007-06-06 20:27 UTC (permalink / raw)
  To: help-gnu-emacs

"Joe Hesse" <joe_hesse@actcx.com> writes:

> When I start emacs from a command shell under Gnome, like:
> $ emacs myfile.txt &
> the emacs editor starts with an info screen.  I can get rid of the info 
> screen with ctrl-l.
>
> I would prefer that this info screen not be there and I am immediately 
> editing myfile.txt.  How do I do this?

I think this is what you are looking for:

inhibit-splash-screen is a variable defined in `startup.el'.
Its value is t


Documentation:
Non-nil inhibits the startup screen.
It also inhibits display of the initial message in the `*scratch*' buffer.

This is for use in your personal init file (but NOT site-start.el), once
you are familiar with the contents of the startup screen.

You can customize this variable.

rdc
-- 
Robert D. Crawford                                      rdc1x@comcast.net

Few things are harder to put up with than the annoyance of a good example.
		-- "Mark Twain, Pudd'nhead Wilson's Calendar"

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

* Re: Prevent Info Screen on Emacs Startup
  2007-06-06 20:09 Prevent Info Screen on Emacs Startup Joe Hesse
  2007-06-06 20:27 ` Robert D. Crawford
@ 2007-06-08 13:09 ` Ken Goldman
  2007-06-08 14:42   ` Tim X
  1 sibling, 1 reply; 5+ messages in thread
From: Ken Goldman @ 2007-06-08 13:09 UTC (permalink / raw)
  To: help-gnu-emacs

My standard answer to startup complaints is to use the emacs 
client/server model.  Start up emacs once and then leave it running 
forever as a server.  Edit new files using the emacs client.

This solves all the typical "slow startup" complaints as well as your 
splash screen issue.

Joe Hesse wrote:
> I have emacs 22.0.990.1.  Using Fedora 7 with Gnome.
> 
> When I start emacs from a command shell under Gnome, like:
> $ emacs myfile.txt &
> the emacs editor starts with an info screen.  I can get rid of the info 
> screen with ctrl-l.
> 
> I would prefer that this info screen not be there and I am immediately 
> editing myfile.txt.  How do I do this?

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

* Re: Prevent Info Screen on Emacs Startup
  2007-06-08 13:09 ` Ken Goldman
@ 2007-06-08 14:42   ` Tim X
  2007-06-08 14:48     ` poppyer
  0 siblings, 1 reply; 5+ messages in thread
From: Tim X @ 2007-06-08 14:42 UTC (permalink / raw)
  To: help-gnu-emacs

Ken Goldman <kgold@watson.ibm.com> writes:

> My standard answer to startup complaints is to use the emacs client/server
> model.  Start up emacs once and then leave it running forever as a server.
> Edit new files using the emacs client.
>
> This solves all the typical "slow startup" complaints as well as your splash
> screen issue.
>

Using the emacs client stuff is good. However, to answer the OPs original
question, you can disable the splash screen with a command line switch (I think
it might be -no-splash or something similar). 

You can probably get rid of it through customize or X resources as well.
However, I'm not sure as I've never bothered (because I don't start emacs that
often - leave it running for weeks at a time).

Tim

> Joe Hesse wrote:
>> I have emacs 22.0.990.1.  Using Fedora 7 with Gnome.
>>
>> When I start emacs from a command shell under Gnome, like:
>> $ emacs myfile.txt &
>> the emacs editor starts with an info screen.  I can get rid of the info
>> screen with ctrl-l.
>>
>> I would prefer that this info screen not be there and I am immediately
>> editing myfile.txt.  How do I do this?

-- 
tcross (at) rapttech dot com dot au

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

* Re: Prevent Info Screen on Emacs Startup
  2007-06-08 14:42   ` Tim X
@ 2007-06-08 14:48     ` poppyer
  0 siblings, 0 replies; 5+ messages in thread
From: poppyer @ 2007-06-08 14:48 UTC (permalink / raw)
  To: help-gnu-emacs

I think somebody has point out the solution several days ago
add this to .emacs file


;; Supress the GNU startup message
(setq inhibit-startup-message t)


Tim X <timx@nospam.dev.null> writes:

> Ken Goldman <kgold@watson.ibm.com> writes:
> 
> > My standard answer to startup complaints is to use the emacs client/server
> > model.  Start up emacs once and then leave it running forever as a server.
> > Edit new files using the emacs client.
> >
> > This solves all the typical "slow startup" complaints as well as your splash
> > screen issue.
> >
> 
> Using the emacs client stuff is good. However, to answer the OPs original
> question, you can disable the splash screen with a command line switch (I think
> it might be -no-splash or something similar). 
> 
> You can probably get rid of it through customize or X resources as well.
> However, I'm not sure as I've never bothered (because I don't start emacs that
> often - leave it running for weeks at a time).
> 
> Tim
> 
> > Joe Hesse wrote:
> >> I have emacs 22.0.990.1.  Using Fedora 7 with Gnome.
> >>
> >> When I start emacs from a command shell under Gnome, like:
> >> $ emacs myfile.txt &
> >> the emacs editor starts with an info screen.  I can get rid of the info
> >> screen with ctrl-l.
> >>
> >> I would prefer that this info screen not be there and I am immediately
> >> editing myfile.txt.  How do I do this?
> 
> -- 
> tcross (at) rapttech dot com dot au

-- 

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

end of thread, other threads:[~2007-06-08 14:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-06 20:09 Prevent Info Screen on Emacs Startup Joe Hesse
2007-06-06 20:27 ` Robert D. Crawford
2007-06-08 13:09 ` Ken Goldman
2007-06-08 14:42   ` Tim X
2007-06-08 14:48     ` poppyer

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.