Re: Parallel doseq?

2012-05-27 Thread Cedric Greevey
On Sun, May 27, 2012 at 2:52 AM, Cedric Greevey wrote: > I noticed with the working pdoseq I posted earlier that sometimes the > threads on one core get ahead of those on the others, for some reason, > and then that core is idle for the rest of a job -- Windows, at least, > doesn't seem to reassig

ClojureScript One

2012-05-27 Thread Pierre-Henry Perret
Sometimes, I dont know when/why, I get the following response from clj-repl: WARNING: The form (. this toString) is no longer a property access. Maybe > you meant (. this -toStrin > g) instead? > I use the M003 branch of cj One Have any idea ? -- You received this message because you are sub

Re: ClojureScript One

2012-05-27 Thread Jonathan Fischer Friberg
When clojurescript first came out (.toString this) (.toString this 3) both of these seems to be a function call, but the first one was transformed to (. this toString) and because there is no way to know if the user meant to call the function "toString" or get the property "toString", it return

Issues with installing clojure-mode on Mac in Emacs

2012-05-27 Thread James
Hi, I have GNU Emacs v 23.4 installed on Mac OS X 10.7.4. I've followed the installation instructions for clojure-mode but get stuck at the point where I have to issue the following in Emacs: M-x eval-buffer M-x package-refresh-contents The second line gives me [No match]. I have package

Re: Issues with installing clojure-mode on Mac in Emacs

2012-05-27 Thread Phil Hagelberg
If you are installing .el files by hand you don't need package.el. -Phil -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient

Re: Issues with installing clojure-mode on Mac in Emacs

2012-05-27 Thread James
I've removed package.el now, but am getting the same: M-x eval-buffer M-x package-refresh-contents [No match] / James On May 27, 5:23 pm, Phil Hagelberg wrote: > If you are installing .el files by hand you don't need package.el. > > -Phil -- You received this message because you are subscribe

Re: Parallel doseq?

2012-05-27 Thread Steve Miner
On May 27, 2012, at 3:11 AM, Cedric Greevey wrote: > Eh. For general use, that needs to be (partition 100 100 nil calls#) > in case the total size of the job isn't divisible by 100; otherwise, > the items after the last exact multiple of 100 will be silently not > done. You could use partition-a

Re: Issues with installing clojure-mode on Mac in Emacs

2012-05-27 Thread Moritz Ulrich
You don't need eval-buffer and package-refresh-contents. Why refresh package.el's index when you don't use it? On Sun, May 27, 2012 at 5:40 PM, James wrote: > I've removed package.el now, but am getting the same: > > M-x eval-buffer > M-x package-refresh-contents [No match] > > / James > > On May

Re: Issues with installing clojure-mode on Mac in Emacs

2012-05-27 Thread Lars Nilsson
On Sun, May 27, 2012 at 11:09 AM, James wrote: > Here's my init.el: > > (add-to-list 'load-path "~/.emacs.d/") > (require 'clojure-mode) > > (add-to-list 'load-path "~/.emacs.d/packages/") Perhaps you could try the following? (add-to-list 'load-path (expand-file-name ".emacs.d" "~")) (add-to-lis

Re: Issues with installing clojure-mode on Mac in Emacs

2012-05-27 Thread Sam Aaron
Take a look at the guts of Emacs Live: http://github.com/overtone/emacs-live in particular, check out the Clojure pack: https://github.com/overtone/emacs-live/tree/master/packs/live/clojure-pack It doesn't use the Emacs package manager either, opting to put external files in a lib directory.

Re: Issues with installing clojure-mode on Mac in Emacs

2012-05-27 Thread Sean Neilan
You must use emacs 24! Do not use emacs 23.4! Use the cutting edge version of aquamacs http://aquamacs.org/nightlies.shtml Aquamacs 24 works with emacs prelude with no sweat. Just delete all the stuff in your .emacs.d folder after installing aquamacs and try again. On Sun, May 27, 2012 at 11:26

Re: Issues with installing clojure-mode on Mac in Emacs

2012-05-27 Thread James
Hi Sam, Emacs Live looks seriously cool, however I have doubts about this: "Emacs live has only been tested with a terminal hosted Emacs 24.1.50.2 (pre-release). Issues and pull-requests for this and later versions will be happily accepted." This version isn't stable, should I go ahead and instal

Re: Issues with installing clojure-mode on Mac in Emacs

2012-05-27 Thread James
@Sean: All right, will give a shot. Thanks. / James On May 27, 6:45 pm, Sean Neilan wrote: > You must use emacs 24! Do not use emacs 23.4! > > Use the cutting edge version of aquamacshttp://aquamacs.org/nightlies.shtml > > Aquamacs 24 works with emacs prelude with no sweat. Just delete all the >

Re: Issues with installing clojure-mode on Mac in Emacs

2012-05-27 Thread Sean Neilan
NP! Also, it says in the guide http://batsov.com/prelude/ to run emacs from the command line. Obviously, run Aquamacs instead of the command line emacs. On Sun, May 27, 2012 at 11:57 AM, James wrote: > @Sean: All right, will give a shot. Thanks. > > / James > > On May 27, 6:45 pm, Sean Neilan

Re: Issues with installing clojure-mode on Mac in Emacs

2012-05-27 Thread Moritz Ulrich
I wouldn't recommend Aquamacs for GUI-Stuff on OS X. Instead, use Emacs.app from [1]. The bundle there is a vanilla build of Emacs without patches etc. that can break things. [1]: http://emacsformacosx.com/ On Sun, May 27, 2012 at 7:09 PM, Sean Neilan wrote: > NP! > > Also, it says in the guide

Re: Issues with installing clojure-mode on Mac in Emacs

2012-05-27 Thread Sam Aaron
On Sunday, 27 May 2012 at 17:48, James wrote: > Hi Sam, Emacs Live looks seriously cool, wonderful! Thanks for the kind words > however I have doubts about this: > > "Emacs live has only been tested with a terminal hosted Emacs > 24.1.50.2 (pre-release). Issues and pull-requests for this and