Re: [Caml-list] new emacs tuareg mode release

2010-06-11 Thread Albert Cohen

Hi all,

With some delay, I would like to thank Sam and all Jane St Capital folks 
for taking over the maintenance of Tuareg.


Happy hacking indeed!

Albert

On 05/24/2010 06:36 PM, Sam Steingold wrote:

Hi,
The original author of the alternative Emacs mode for editing Ocaml code
(tuareg-mode), Albert Cohen, has stopped development some time ago.
Now, with his blessing, Jane Street Capital took over maintenance of the
code from him, and released Tuareg Mode v. 2.0.0.
It is available for download at
.
It is still released under the GNU General Public License (GPL) v2.
Please report bugs and submit patches to the dedicated public mailing
list at
.
Happy hacking!
Sam

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-26 Thread Mehdi Dogguy
On 26/05/2010 16:01, Christophe TROESTLER wrote:
> On Wed, 26 May 2010 15:33:13 +0200, Mehdi Dogguy wrote:
>> 
>> * in tuareg-mode 2.0, "let" and "open" statements (and some others)
>> are bold and blue. I found that change quite surprising. It keeps my
>> eyes clipped on them. They contrast too much with the other colors
>> used.
> 
> That is one thing I like with tuareg: you can change the colors without
> affecting other modes.

Well… thanks for this advice, but I know how to configure it :) My
"problem" are not the colors but rather the bad default colors (for the
reasons I've already mentioned).

Regards,

-- 
Mehdi Dogguy مهدي الدڤي
http://www.pps.jussieu.fr/~dogguy
Tel.: (+33).1.44.27.28.38

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-26 Thread Christophe TROESTLER
On Wed, 26 May 2010 15:33:13 +0200, Mehdi Dogguy wrote:
> 
>   * in tuareg-mode 2.0, "let" and "open" statements (and some others) are
> bold and blue. I found that change quite surprising. It keeps my eyes
> clipped on them. They contrast too much with the other colors used.

That is one thing I like with tuareg: you can change the colors
without affecting other modes.  For your "problem", I have in
'tuareg-load-hook the following:

(face-spec-set 'tuareg-font-lock-governing-face
 'class color) (type tty)) (:bold t))
   (((class color) (background light)) (:foreground "black" :bold t))
   (((class color) (background dark))
(:foreground "wheat" :bold t

>   * in tuareg-mode 2.0, in mll files, rules are now harder to read because
> it uses mainly red (for symbols, let's say) and light brown for strings
> (as usual) and the contrast between these two colors is too low. It
> used to be dark purple and light brown which is (not perfect, but at
> least)a better default setting, IMHO.

I do not like operators to stand out that much, so I use:

(face-spec-set
 'tuareg-font-lock-operator-face
 'class color) (type tty)) (:foreground "white"))
   (((class color) (background light)) (:foreground "DimGray"))
   (((class color) (background dark)) (:foreground "Tan")))
 )

You can play with colors that suit you too!

Another difference with indentation is that, e.g. "let", is electric
(it indents the line) and M-q reindent the entire expression (which
can really be handy).

Best,
C.

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-26 Thread Sam Steingold
On 5/26/10, Stéphane Glondu  wrote:
>  (skip-syntax-backward "\s-")
>  Debugger entered--Lisp error: (error "Invalid modifier in string")

I see. Thanks.
I will fix this and make tuareg 2.0.1 available soon.

-- 
Sam Steingold 

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-26 Thread Mehdi Dogguy
On 26/05/2010 12:02, Tom Hutchinson wrote:
> I would be most interested to hear answers to this e-mail.
> 

Me too. It would be nice if tuareg's upstream could summarize some points
to show the difference. That would help!

> I too have wondered about the differences between tuareg mode and caml 
> mode.
> 

I use only two features in tuareg-mode which are syntax coloring and
indentation (and from time to time, caml-show-types from caml-mode when
debugging). So my remarks (below) might not be complete but should be
enough (IMHO) for most of users to get an idea of the difference (for a
daily use):

- colors:

  * caml-mode doesn't colorize mll files as good as tuareg-mode: open any
.mll file and look at any "rule foo bar = parse", it's all black. rules
are functions, so they should be colorized the same way.
  * in caml-mode, functions and arguments have the same colors (when
defining functions).
  * some operators are not colorized in caml-mode (e.g. "::"). I didn't
check all of them, only "::"… but that's enough for me to not use
caml-mode because, visually, "a::b" looks like a single block and
might be harder to read (or to detect the structure when the expression
if more complicated), which is not very nice.

  * in tuareg-mode 2.0, "let" and "open" statements (and some others) are
bold and blue. I found that change quite surprising. It keeps my eyes
clipped on them. They contrast too much with the other colors used.
  * in tuareg-mode 2.0, in mll files, rules are now harder to read because
it uses mainly red (for symbols, let's say) and light brown for strings
(as usual) and the contrast between these two colors is too low. It
used to be dark purple and light brown which is (not perfect, but at
least)a better default setting, IMHO.

  * For mly files, they provide almost the same coloring.

- indentation: they simply have different defaults. caml-mode sticks to
  the recommendations listed on ocaml's website, AFAIK, which is nice.
  Indentation is configurable in both modes and is a matter of taste.

- other features (ocamldebug, toplevel, …): almost the same, but with
  different names. Maybe there are some tiny differences here, but they
  don't pop up.

It might obvious for some people but, apparently, maybe not for who set
the new default colors, but syntax coloring is used to show in a *clear*
way the structure of the code. From what I see, they both fail to provide
a good syntax coloring. tuareg-mode 1.xx used to have better defaults.

Some people might consider my remarks as nipticking, and I can understand
that (since I can change these settings). But, tuareg-mode used to have
good defaults and failing at such a basic features for such a program is
completely crazy. Besides, I appreciate the efforts done from both sides and
I hope that they'll get better soon.

Regards,

-- 
Mehdi Dogguy مهدي الدڤي
http://www.pps.jussieu.fr/~dogguy

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-26 Thread Jacques Garrigue
From: Eliot Handelman 
> Tom Hutchinson wrote:
>> I would be most interested to hear answers to this e-mail.
>>
>> I too have wondered about the differences between tuareg mode and caml
>> mode.
>>   
> One of the major differences I found (emacs 22.3.1) were persistent
> screwups involving comments. For
> example font-lock didn't work on multiline comments. This gave all
> comments an ugly random
> colorization. I was very happy to discover this had been fixed in
> tuareg.

This has been fixed in caml-mode long ago too.
I think the main difference is that ocaml-mode is based on very old
code, developped originally for caml-light, and was it emacs 18 at
that time. It contained various hacks to make it faster, with some bad
side effects at times. Overall the bugs have been corrected, but this
is probably the case that at one point tuareg mode was more stable.

I'm not going to suggest that tuareg mode switch to the ocaml-mode
code base, because I think that actually the tuareg code is cleaner.
However, for various historical reasons the two code bases are
developped in parallel, with some reasonable amount of sharing, so
I see no real problem with the current situation.

Jacques Garrigue

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-26 Thread Eliot Handelman

Tom Hutchinson wrote:

I would be most interested to hear answers to this e-mail.

I too have wondered about the differences between tuareg mode and caml mode.
  
One of the major differences I found (emacs 22.3.1) were persistent 
screwups involving comments. For
example font-lock didn't work on multiline comments. This gave all 
comments an ugly random

colorization. I was very happy to discover this had been fixed in tuareg.




-- eliot

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-26 Thread Tom Hutchinson
I would be most interested to hear answers to this e-mail.

I too have wondered about the differences between tuareg mode and caml mode.

I noticed that key bindings are different and formatting is handled a little 
differently. I have never seen a good comparison between the two though. Or why 
tuareg-mode exists at all (instead of improving caml mode).

Another thing is that in the tuareg mode documentation, there is no mention 
that you need to install files from caml mode. It seems like C-c C-t (type 
throwback) only works after installing caml-types.el from caml mode. What other 
files from caml mode need to be installed?

I'm glad to see ocamlspot.el is included now.

Thanks

Tom

On May 24, 2010, at 10:34 PM, blue storm wrote:

> I have long used the emacs tuareg mode (simply because when I asked
> advice someone told me that it was better than the standard caml
> mode), and have recently wondered if that choice was motivated by
> rational reasons. When I looked at it, I discovered that the original
> caml mode has overall the same set of features (with some of them
> coming earlier due to it being maintained by the OCaml team), was
> reasonably well documented and was split in multiple source files
> instead of one monolithic .el for tuareg-mode. I switched to the
> standard caml-mode. The indentation, coloring and shorctuts are a bit
> different, but otherwise I don't see what motivated the better tuareg
> reputation.
> 
> Are you planning to add new features that would make tuareg decisively
> better ? Have I missed some existing killer feature ? Why did you
> choose to maintain the tuareg mode instead of collaborating with the
> caml-mode upstream ?
> 
> ___
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-25 Thread Stéphane Glondu
Sam Steingold a écrit :
>>  I have the same problem with 22.3.1
>>
>>  playing around, this construction seems to be causing some invalid modifier
>> errors:
>>  (skip-syntax-backward "\s-")
>>
>>  in tuareg-find-colon-typespec and other places
> 
> what kind of error?
> I.e., start emacs like this:
> $ emacs -q --no-site-file
> and type in the *scratch* buffer and tell me what you type and cut and
> paste the error message from the *Messages* buffer.

On emacs 22.3.1,

(skip-syntax-backward "\s-")

gives the backtrace:

Debugger entered--Lisp error: (error "Invalid modifier in string")
  read(#)
  preceding-sexp()
  eval-last-sexp-1(nil)
  eval-last-sexp(nil)
  call-interactively(eval-last-sexp)
  recursive-edit()
  byte-code("\306^P
@\307=\20...@\310\311\312\"\210\313\311!\211^ZA@)\242\314=\20...@\310\315\312\"\210\316^K!\210\317
\210\320 !\210\f\20...@\321ed\"^mv\20...@eb\210\322^$
  debug(error (error "Invalid modifier in string"))
  read(#)
  preceding-sexp()
  eval-last-sexp-1(nil)
  eval-last-sexp(nil)
  call-interactively(eval-last-sexp)

(and nothing in *Messages*)

By the way, I wasn't able to find documentation for this construct. The
"\s" is responsible, but I have no idea what is its semantics. I have
not been able to observe a behaviour different than with just
(skip-syntax-backward "-").


Cheers,

-- 
Stéphane

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-25 Thread Sam Steingold
Eliot,

On 5/24/10, Eliot Handelman  wrote:
>
>  I have the same problem with 22.3.1
>
>  playing around, this construction seems to be causing some invalid modifier
> errors:
>  (skip-syntax-backward "\s-")
>
>  in tuareg-find-colon-typespec and other places

what kind of error?
I.e., start emacs like this:
$ emacs -q --no-site-file
and type in the *scratch* buffer and tell me what you type and cut and
paste the error message from the *Messages* buffer.

>  and also captive= as a let variable seems to cause problems in
>  tuareg-indent-from-previous-kwop. commenting all these
> things out
>  (or changing the var name) the file does load.

what problems? again, please start from a fresh emacs and try to reproduce.

thanks.

-- 
Sam Steingold 

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-25 Thread Jan Rehders
Does the 2.0 version provide new features, bug fixes, etc?

On Tue, May 25, 2010 at 3:00 AM, Eliot Handelman  wrote:
> Sam Steingold wrote:
>>
>> my tuareg.el has this as line 1933:
>> (defun tuareg-semicolon-indent-kwop-point (&optional leading-semi-colon)
>>
>> I have no idea what could be causing this error.
>>
>> please try to investigate this yourself to produce a small test case.
>> e.g., try removing this or the previous form.
>>
>>
>
> Sam,
>
> I have the same problem with 22.3.1
>
> playing around, this construction seems to be causing some invalid modifier
> errors:
> (skip-syntax-backward "\s-")
>
> in tuareg-find-colon-typespec and other places
>
>
> and also captive= as a let variable seems to cause problems in
> tuareg-indent-from-previous-kwop. commenting all these things out
> (or changing the var name) the file does load.
>
> best,
>
> -- eliot
>
> ___
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
>

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-24 Thread Eliot Handelman

Sam Steingold wrote:

my tuareg.el has this as line 1933:
(defun tuareg-semicolon-indent-kwop-point (&optional leading-semi-colon)

I have no idea what could be causing this error.

please try to investigate this yourself to produce a small test case.
e.g., try removing this or the previous form.

  


Sam,

I have the same problem with 22.3.1

playing around, this construction seems to be causing some invalid 
modifier errors:

(skip-syntax-backward "\s-")

in tuareg-find-colon-typespec and other places


and also captive= as a let variable seems to cause problems in
tuareg-indent-from-previous-kwop. commenting all these things out
(or changing the var name) the file does load.

best,

-- eliot

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-24 Thread Sam Steingold
On 5/24/10, Philip  wrote:
> GNU Emacs 22.2.1

wfm with 23.1 and 24.0

>  phi...@io:~/Desktop/tuareg$ make
>
> emacs -batch -q --no-site-file -f batch-byte-compile append-tuareg.el
>  Wrote /home/philip/Desktop/tuareg/append-tuareg.elc
>  emacs -batch -q --no-site-file -f batch-byte-compile tuareg.el
>
>  In toplevel form:
>  tuareg.el:1933:1:Error: Invalid modifier in string
>  make: *** [tuareg.elc] Error 1

my tuareg.el has this as line 1933:
(defun tuareg-semicolon-indent-kwop-point (&optional leading-semi-colon)

I have no idea what could be causing this error.

please try to investigate this yourself to produce a small test case.
e.g., try removing this or the previous form.

-- 
Sam Steingold 

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-24 Thread Philip
On Mon, 2010-05-24 at 16:09 -0400, Sam Steingold wrote:
> Error 1
> 
> what is your emacs version?

Hi, 
GNU Emacs 22.2.1 ,ubuntu 10.04

> could you please add "--no-site-file" to the emacs invocations:
> 
> diff --git a/Makefile b/Makefile
> --- a/Makefile
> +++ b/Makefile
> @@ -1,5 +1,5 @@
>  EMACS = emacs
> -BATCH = -batch -q --load tuareg.elc
> +BATCH = -batch -q --no-site-file --load tuareg.elc
>  RM = rm -rf
>  CP = cp -f
>  LN = ln
> @@ -21,7 +21,7 @@
>  elc : $(ELC)
> 
>  %.elc : %.el
> - $(EMACS) -batch -q -f batch-byte-compile $<
> + $(EMACS) -batch -q --no-site-file -f batch-byte-compile $<
> 
>  camldebug.elc : camldebug.el tuareg.elc
> 

done, but same error:

phi...@io:~/Desktop/tuareg$ make
emacs -batch -q --no-site-file -f batch-byte-compile append-tuareg.el
Wrote /home/philip/Desktop/tuareg/append-tuareg.elc
emacs -batch -q --no-site-file -f batch-byte-compile tuareg.el

In toplevel form:
tuareg.el:1933:1:Error: Invalid modifier in string
make: *** [tuareg.elc] Error 1



___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-24 Thread blue storm
I have long used the emacs tuareg mode (simply because when I asked
advice someone told me that it was better than the standard caml
mode), and have recently wondered if that choice was motivated by
rational reasons. When I looked at it, I discovered that the original
caml mode has overall the same set of features (with some of them
coming earlier due to it being maintained by the OCaml team), was
reasonably well documented and was split in multiple source files
instead of one monolithic .el for tuareg-mode. I switched to the
standard caml-mode. The indentation, coloring and shorctuts are a bit
different, but otherwise I don't see what motivated the better tuareg
reputation.

Are you planning to add new features that would make tuareg decisively
better ? Have I missed some existing killer feature ? Why did you
choose to maintain the tuareg mode instead of collaborating with the
caml-mode upstream ?

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-24 Thread Sam Steingold
On 5/24/10, Philip  wrote:
> Hi, i get an error:
>
>  phi...@io:~/Desktop/tuareg$ make
>  emacs -batch -q -f batch-byte-compile tuareg.el
>  Loading 00debian-vars...
>  No /etc/mailname. Reverting to default...
>  Loading /etc/emacs/site-start.d/50a2ps.el (source)...
>  Error while loading 50a2ps: Symbol's value as variable is void:
>  a2ps-region
>  Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
>  Loading debian-ispell...
>  Loading /var/cache/dictionaries-common/emacsen-ispell-default.el
>  (source)...
>  Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el
>  (source)...
>  Loading /etc/emacs/site-start.d/50festival.el (source)...
>  Loading /etc/emacs/site-start.d/50git-core.el (source)...
>  Loading /etc/emacs/site-start.d/50ocaml-mode.el (source)...
>  Loading /etc/emacs/site-start.d/50psvn.el (source)...
>  Loading /etc/emacs/site-start.d/51tuareg-mode.el (source)...
>
>  In toplevel form:
>  tuareg.el:1933:1:Error: Invalid modifier in string
>  make: *** [tuareg.elc] Error 1

what is your emacs version?
could you please add "--no-site-file" to the emacs invocations:

diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 EMACS = emacs
-BATCH = -batch -q --load tuareg.elc
+BATCH = -batch -q --no-site-file --load tuareg.elc
 RM = rm -rf
 CP = cp -f
 LN = ln
@@ -21,7 +21,7 @@
 elc : $(ELC)

 %.elc : %.el
-   $(EMACS) -batch -q -f batch-byte-compile $<
+   $(EMACS) -batch -q --no-site-file -f batch-byte-compile $<

 camldebug.elc : camldebug.el tuareg.elc




-- 
Sam Steingold 

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-24 Thread Philip
On Mon, 2010-05-24 at 12:36 -0400, Sam Steingold wrote:
> Hi,
> The original author of the alternative Emacs mode for editing Ocaml code 
> (tuareg-mode), Albert Cohen, has stopped development some time ago.
> Now, with his blessing, Jane Street Capital took over maintenance of the code 
> from him, and released Tuareg Mode v. 2.0.0.
> It is available for download at .
> It is still released under the GNU General Public License (GPL) v2.
> Please report bugs and submit patches to the dedicated public mailing list at
> .
> Happy hacking!
> Sam
> 
Hi, i get an error:

phi...@io:~/Desktop/tuareg$ make
emacs -batch -q -f batch-byte-compile tuareg.el
Loading 00debian-vars...
No /etc/mailname. Reverting to default...
Loading /etc/emacs/site-start.d/50a2ps.el (source)...
Error while loading 50a2ps: Symbol's value as variable is void:
a2ps-region
Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
Loading debian-ispell...
Loading /var/cache/dictionaries-common/emacsen-ispell-default.el
(source)...
Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el
(source)...
Loading /etc/emacs/site-start.d/50festival.el (source)...
Loading /etc/emacs/site-start.d/50git-core.el (source)...
Loading /etc/emacs/site-start.d/50ocaml-mode.el (source)...
Loading /etc/emacs/site-start.d/50psvn.el (source)...
Loading /etc/emacs/site-start.d/51tuareg-mode.el (source)...

In toplevel form:
tuareg.el:1933:1:Error: Invalid modifier in string
make: *** [tuareg.elc] Error 1

-philip


___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-24 Thread Sam Steingold
On 5/24/10, Stéphane Glondu  wrote:
> Sam Steingold a écrit :
>
> > Now, with his blessing, Jane Street Capital took over maintenance of the
>  > code from him, and released Tuareg Mode v. 2.0.0.
>  > It is available for download at
>  > .
>
> Is there some kind of project page, with available versions? A place to
>  check for new releases, if you will...

new releases will be announced on the tuareg-mode and caml-list mailing lists.

-- 
Sam Steingold 

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


Re: [Caml-list] new emacs tuareg mode release

2010-05-24 Thread Stéphane Glondu
Sam Steingold a écrit :
> Now, with his blessing, Jane Street Capital took over maintenance of the
> code from him, and released Tuareg Mode v. 2.0.0.
> It is available for download at
> .

Is there some kind of project page, with available versions? A place to
check for new releases, if you will...


Cheers,

-- 
Stéphane

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs


[Caml-list] new emacs tuareg mode release

2010-05-24 Thread Sam Steingold

Hi,
The original author of the alternative Emacs mode for editing Ocaml code 
(tuareg-mode), Albert Cohen, has stopped development some time ago.
Now, with his blessing, Jane Street Capital took over maintenance of the code 
from him, and released Tuareg Mode v. 2.0.0.

It is available for download at .
It is still released under the GNU General Public License (GPL) v2.
Please report bugs and submit patches to the dedicated public mailing list at
.
Happy hacking!
Sam

___
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs