Ole Arndt writes:
> Hello,
>
> Paul Kinnucan <[EMAIL PROTECTED]> writes:
>
> > "Albert, J�rgen" writes:
> > > I am trying to check in a .emacs file with CVS. My .emacs contains the
> > > stored jde-key-bindings in the following format:
> > >
> > > '(jde-key-bindings (quote (("[?^C ?^V ?^Z]" ...
> > >
> > > Unfortunatelly CVS stops at the ^Z character (yes ***one*** character and
> > > perhaps EOF?) and only half of my .emacs gets into the CVS repository.
> > >
> >
> > Odd. Why would CVS interpret ^Z as a single control character instead
> > of two noncontrol characters (i.e., caret and Z)?
>
> Paul, when you press \C-q \C-z emacs inserts a Control-Z (EOF) control
> character into the file. This might be the case here.
>
Yes, but that is not what is happening in Albert's case as far as I
can see. In his case the Emacs customization code is writing the
keybinding into his .emacs file, using the two noncontrol characters
'^' and 'Z' to represent the single charcter Control-Z. I don't know
why this should cause a problem for CVS.
> An alternative way of defining it, which works with emacs and xemacs
> is:
>
> [(control c) (control v) (control z)]
>
> that's what we use here.
>
That is what jde.el uses also for some keybindings.
- Paul
> Ole
>
> --
> Ole Arndt http://www.sugarshark.com
> -------------------------------------------------------