unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* Accessiing the CVS tip for Emacs
@ 2004-04-28 20:53 Peter Milliken
  2004-04-29  5:49 ` Eli Zaretskii
       [not found] ` <mailman.2316.1083214080.1061.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 8+ messages in thread
From: Peter Milliken @ 2004-04-28 20:53 UTC (permalink / raw)


Hi,

Sorry for the repeat, I posted this to gnu@gnu.org but possibly that was the
wrong place?

I would dearly love to trial the latest source of Emacs but am behind a
firewall and therefore cannot get access to the CVS repository.

Is there any way of getting a nightly snapshot (or less frequent if that is
a problem :-)) of the CVS source tar'd and gzip'd and placed somewhere on
the web-site? (savanah that is). 

Thanks
Peter

Peter Milliken
Software Engineer
ResMed
Phone: +61 2 9886-5059
Fax:   +61 2 9878-5564 


Warning:  Copyright ResMed.  Where the contents of this email and/or attachment includes materials prepared by ResMed, the use of those
materials is subject exclusively to the conditions of engagement between ResMed and the intended recipient.
 
This communication is confidential and may contain legally privileged information.
By the use of email over the Internet or other communication systems, ResMed is not waiving either confidentiality of, or legal
privilege in,the content of the email and of any attachments.
If the recipient of this message is not the intended addressee, please call ResMed immediately on  +61 2 9886 5000 Sydney, Australia.

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

* Re: Accessiing the CVS tip for Emacs
  2004-04-28 20:53 Accessiing the CVS tip for Emacs Peter Milliken
@ 2004-04-29  5:49 ` Eli Zaretskii
       [not found] ` <mailman.2316.1083214080.1061.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 8+ messages in thread
From: Eli Zaretskii @ 2004-04-29  5:49 UTC (permalink / raw)


> From: Peter Milliken <PeterM@resmed.com.au>
> Date: Thu, 29 Apr 2004 06:53:13 +1000
> 
> Sorry for the repeat, I posted this to gnu@gnu.org but possibly that was the
> wrong place?

The right place for such requests is emacs-devel@gnu.org, the Emacs
development mailing list.

> I would dearly love to trial the latest source of Emacs but am behind a
> firewall and therefore cannot get access to the CVS repository.
> 
> Is there any way of getting a nightly snapshot (or less frequent if that is
> a problem :-)) of the CVS source tar'd and gzip'd and placed somewhere on
> the web-site? (savanah that is). 

For this, someone will have to volunteer to produce such snapshots and
set up the necessary machinery, site, etc.  No one did, as of now.

It should be easier for you to find a way around your firewall.  To
begin, find out what ports are not blocked by it, and then ask on
emacs-devel for further advice.

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

* Re: Accessiing the CVS tip for Emacs
       [not found] ` <mailman.2316.1083214080.1061.help-gnu-emacs@gnu.org>
@ 2004-04-29 12:47   ` Glenn Morris
  2004-05-04 15:34     ` bind to M-" Dave Yuill
       [not found]     ` <mailman.3260.1083685014.1061.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 8+ messages in thread
From: Glenn Morris @ 2004-04-29 12:47 UTC (permalink / raw)


Eli Zaretskii wrote:

>> From: Peter Milliken <PeterM@resmed.com.au>
>> Date: Thu, 29 Apr 2004 06:53:13 +1000
[...]
>> Is there any way of getting a nightly snapshot (or less frequent if that is
>> a problem :-)) of the CVS source tar'd and gzip'd and placed somewhere on
>> the web-site? (savanah that is). 
>
> For this, someone will have to volunteer to produce such snapshots and
> set up the necessary machinery, site, etc.  No one did, as of now.

Savannah makes an automatic (nightly) tarball of the CVS repository
(ie the version files) available at

http://savannah.gnu.org/cvs-backup/emacs-sources.tar.gz

which is better than nothing.

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

* bind to M-"
  2004-04-29 12:47   ` Glenn Morris
@ 2004-05-04 15:34     ` Dave Yuill
       [not found]     ` <mailman.3260.1083685014.1061.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 8+ messages in thread
From: Dave Yuill @ 2004-05-04 15:34 UTC (permalink / raw)


Hi everyone,

My lisp experience consists mostly of copy/paste -> modify so forgive 
me if this is a silly question.  I would like to bind a command to M-". 
  I've tried things like..

(global-set-key "\M-"" 'my-function) ;; obviously shouldn't work

and

(global-set-key [\M-"] 'my-function) ;; End of file during parsing error

.. to no avail.  Could some kind soul please point me in the right 
direction?

Thanks,
-Dave

PS: FWIW I'm running cvs emacs on Mac OS 10.3.3

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

* Re: bind to M-"
       [not found]     ` <mailman.3260.1083685014.1061.help-gnu-emacs@gnu.org>
@ 2004-05-04 16:11       ` Stefan Monnier
  2004-05-04 16:26       ` martin
  2004-05-04 17:14       ` upro
  2 siblings, 0 replies; 8+ messages in thread
From: Stefan Monnier @ 2004-05-04 16:11 UTC (permalink / raw)


> (global-set-key "\M-"" 'my-function) ;; obviously shouldn't work

(global-set-key "\M-\"" 'my-function)

> (global-set-key [\M-"] 'my-function) ;; End of file during parsing error

(global-set-key [?\M-\"] 'my-function)

or also

(global-set-key [(meta ?\")] 'my-function)


        Stefan

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

* Re: bind to M-"
       [not found]     ` <mailman.3260.1083685014.1061.help-gnu-emacs@gnu.org>
  2004-05-04 16:11       ` Stefan Monnier
@ 2004-05-04 16:26       ` martin
  2004-05-04 17:14       ` upro
  2 siblings, 0 replies; 8+ messages in thread
From: martin @ 2004-05-04 16:26 UTC (permalink / raw)



"DY" == Dave Yuill <dave@datashepherd.com> writes:
 DY> Date: Tue, 4 May 2004 12:34:05 -0300
 DY> To: help-gnu-emacs@gnu.org
 DY> 
 DY> Hi everyone,
 DY> 
 DY> My lisp experience consists mostly of copy/paste -> modify so forgive
 DY> me if this is a silly question.  I would like to bind a command to
 DY> M-". I've tried things like..
 DY> 
 DY> (global-set-key "\M-"" 'my-function) ;; obviously shouldn't work
 DY> 
 DY> and
 DY> 
 DY> (global-set-key [\M-"] 'my-function) ;; End of file during parsing error
 DY> 
 DY> .. to no avail.  Could some kind soul please point me in the right
 DY> direction?

hi,

define the key interactively by typing M-x global-set-key RET etc.

find the correct lisp code in the history buffer of the
repeat-complex-command (M-x repeat-complex-command RET <up>).

martin

 DY> 
 DY> Thanks,
 DY> -Dave
 DY> 
 DY> PS: FWIW I'm running cvs emacs on Mac OS 10.3.3
 DY> 
 DY> 
 DY> 
 DY> 
-- 
martin dot fischer at boschrexroth dot de

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

* Re: bind to M-"
       [not found]     ` <mailman.3260.1083685014.1061.help-gnu-emacs@gnu.org>
  2004-05-04 16:11       ` Stefan Monnier
  2004-05-04 16:26       ` martin
@ 2004-05-04 17:14       ` upro
  2 siblings, 0 replies; 8+ messages in thread
From: upro @ 2004-05-04 17:14 UTC (permalink / raw)


Dave Yuill <dave@datashepherd.com> writes:

> Hi everyone,
>
> My lisp experience consists mostly of copy/paste -> modify so forgive
> me if this is a silly question.  

Same for me, so forgive me if I make a bad suggestion:

Why not try 

(global-set-key [\M-\"] 'my-function) ;; or
(global-set-key "\M-\"" 'my-function)


?

> I would like to bind a command to M-". I've tried things like..
>
> (global-set-key "\M-"" 'my-function) ;; obviously shouldn't work
>
> and
>
> (global-set-key [\M-"] 'my-function) ;; End of file during parsing error
>
> .. to no avail.  Could some kind soul please point me in the right
> direction?
>
> Thanks,
> -Dave
>
> PS: FWIW I'm running cvs emacs on Mac OS 10.3.3
>
>
>

-- 
Michael

r-znvy: zvpunry.wryqra  jro.qr (chg gur "@" jurer vg svgf...)
ab fcnz cyrnfr

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

* Re: bind to M-"
@ 2004-05-05  0:45 Dave Yuill
  0 siblings, 0 replies; 8+ messages in thread
From: Dave Yuill @ 2004-05-05  0:45 UTC (permalink / raw)


>> (global-set-key [?\M-\"] 'my-function)

Thats what I call service.  ;-)

Thanks everyone,
-Dave

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

end of thread, other threads:[~2004-05-05  0:45 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-28 20:53 Accessiing the CVS tip for Emacs Peter Milliken
2004-04-29  5:49 ` Eli Zaretskii
     [not found] ` <mailman.2316.1083214080.1061.help-gnu-emacs@gnu.org>
2004-04-29 12:47   ` Glenn Morris
2004-05-04 15:34     ` bind to M-" Dave Yuill
     [not found]     ` <mailman.3260.1083685014.1061.help-gnu-emacs@gnu.org>
2004-05-04 16:11       ` Stefan Monnier
2004-05-04 16:26       ` martin
2004-05-04 17:14       ` upro
  -- strict thread matches above, loose matches on Subject: below --
2004-05-05  0:45 Dave Yuill

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