public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* crontab: no changes made to crontab
@ 2004-03-02  5:57 Michael Chen
  2004-03-02 13:50 ` Thorsten Kampe
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Chen @ 2004-03-02  5:57 UTC (permalink / raw)
  To: cygwin

Dear all, since the first time using "crontab -", I can never change the
crontab file anymore. "crontab -e" calls emacs, but cron just discarded any
new modifications. The emacs saved the "crontab.*****" into /tmp. What's
wrong? Thanks.


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: crontab: no changes made to crontab
  2004-03-02  5:57 crontab: no changes made to crontab Michael Chen
@ 2004-03-02 13:50 ` Thorsten Kampe
  2004-03-02 17:32   ` Igor Pechtchanski
  0 siblings, 1 reply; 4+ messages in thread
From: Thorsten Kampe @ 2004-03-02 13:50 UTC (permalink / raw)
  To: cygwin

* Michael Chen (2004-03-02 06:57 +0100)
> Dear all, since the first time using "crontab -", I can never change the
> crontab file anymore. "crontab -e" calls emacs, but cron just discarded any
> new modifications. The emacs saved the "crontab.*****" into /tmp. What's
> wrong? Thanks.

Try using another editor as Emacs is a GUI editor.


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: crontab: no changes made to crontab
  2004-03-02 13:50 ` Thorsten Kampe
@ 2004-03-02 17:32   ` Igor Pechtchanski
  2004-03-03 16:10     ` Jeff Mincy
  0 siblings, 1 reply; 4+ messages in thread
From: Igor Pechtchanski @ 2004-03-02 17:32 UTC (permalink / raw)
  To: Thorsten Kampe; +Cc: cygwin

On Tue, 2 Mar 2004, Thorsten Kampe wrote:

> * Michael Chen (2004-03-02 06:57 +0100)
> > Dear all, since the first time using "crontab -", I can never change the
> > crontab file anymore. "crontab -e" calls emacs, but cron just discarded any
> > new modifications. The emacs saved the "crontab.*****" into /tmp. What's
> > wrong? Thanks.
>
> Try using another editor as Emacs is a GUI editor.

This has nothing to do with emacs being a GUI editor (which it isn't, BTW,
or not necessarily).  This does have to do with the editor writing files
in-place.  I'm not sure if either the native or the Cygwin port of emacs
does.  That said, Thorsten did provide a good rule of thumb: most GUI
editors, especially Windows ones, don't write files in place.
	Igor
-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_		pechtcha@cs.nyu.edu
ZZZzz /,`.-'`'    -.  ;-;;,_		igor@watson.ibm.com
     |,4-  ) )-,_. ,\ (  `'-'		Igor Pechtchanski, Ph.D.
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"I have since come to realize that being between your mentor and his route
to the bathroom is a major career booster."  -- Patrick Naughton

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: crontab: no changes made to crontab
  2004-03-02 17:32   ` Igor Pechtchanski
@ 2004-03-03 16:10     ` Jeff Mincy
  0 siblings, 0 replies; 4+ messages in thread
From: Jeff Mincy @ 2004-03-03 16:10 UTC (permalink / raw)
  To: cygwin


> On Tue, 2 Mar 2004, Thorsten Kampe wrote:
>> * Michael Chen (2004-03-02 06:57 +0100)
>> > Dear all, since the first time using "crontab -", I can never change the
>> > crontab file anymore. "crontab -e" calls emacs, but cron just discarded any
>> > new modifications. The emacs saved the "crontab.*****" into /tmp. What's
>> > wrong? Thanks.
>>
>> Try using another editor as Emacs is a GUI editor.
> 
> This has nothing to do with emacs being a GUI editor (which it isn't, BTW,
> or not necessarily).  This does have to do with the editor writing files
> in-place.  I'm not sure if either the native or the Cygwin port of emacs
> does.  That said, Thorsten did provide a good rule of thumb: most GUI
> editors, especially Windows ones, don't write files in place.

Probably OT, but Emacs has several different ways to save files.
This is for XEmacs, (as far as I remember) Emacs works the same way.

See `file-precious-flag'
  This feature works by writing the new contents into a temporary file
  and then renaming the temporary file to replace the original.
  In this way, any I/O error in writing leaves the original untouched,
  and there is never any instant where the file is nonexistent.

crontab -e expects the changes to be made in place, so try
 (setq file-precious-flag nil)

If it works you could add this line as the first line of the crontab.
## -*- file-precious-flag: nil -*-

-jeff


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

end of thread, other threads:[~2004-03-03 14:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-03-02  5:57 crontab: no changes made to crontab Michael Chen
2004-03-02 13:50 ` Thorsten Kampe
2004-03-02 17:32   ` Igor Pechtchanski
2004-03-03 16:10     ` Jeff Mincy

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).