Thanks everyone for the replies! After days of debugging, I finally figured out what was happening. <div><br></div><div>Robert, you were right that the problems with compiling were due to interference from another version of Emacs. I deleted everything and started over and had no trouble compiling. </div>
<div><br></div><div>It turns out the spinning pinwheel was due to an incompatibility between the new version of org-mode and a function I'm running called hidestarsfile, which made my .org files nice and readable in other text editors. </div>
<div><br></div><div>Hidestarsfile worked fine with my old org-mode, but for some reason with the new version it causes endless pinwheeling. I removed that function from my .emacs file and now everything is running smoothly. </div>
<div><br></div><div>But now I need a new way to make my .org files easily readable outside Emacs without showing big rows of stars. Even better would be if the stars showed up as # so they'd be readable with Markdown. </div>
<div><br><br><div class="gmail_quote">On Tue, Feb 14, 2012 at 3:09 PM, Robert Goldman <span dir="ltr"><<a href="mailto:rpgoldman@sift.info">rpgoldman@sift.info</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
> Date: Tue, 14 Feb 2012 00:57:54 -0500<br>
> From: Peter Salazar <<a href="mailto:cycleofsong@gmail.com">cycleofsong@gmail.com</a>><br>
> Subject: [OS X Emacs] problems updating org-mode on Aquamacs<br>
> To: <a href="mailto:macosx-emacs@email.esm.psu.edu">macosx-emacs@email.esm.psu.edu</a><br>
> Message-ID:<br>
>       <CAE+_6TxypRgEepv3K=eWXTkSRwZfV5NfvOOcbbR_kcm1=<a href="mailto:Kg0BQ@mail.gmail.com">Kg0BQ@mail.gmail.com</a>><br>
> Content-Type: text/plain; charset="iso-8859-1"<br>
<div class="im">><br>
> I'm running Aquamacs, which I downloaded as a .dmg and installed. It comes<br>
> with org-mode 6.33 or thereabouts. I'm trying to get a current version of<br>
> org-mode.<br>
><br>
> I downloaded org-mode 7.8.03, did a setq load-path (cons to the org<br>
> directory, then used the package manager to install org from within<br>
> Aquamacs. I can verify that org now states its version as 7.8.03.<br>
><br>
</div><div class="im">> But now whenever I save a file or open a new one, I get spinning rainbow<br>
> pinwheel of death. Do I have to compile the package somehow?<br>
><br>
</div><div class="im">> I downloaded org-mode again and followed the instructions to do "make" and<br>
> "make install," but it didn't have any effect. Still pinwheel.<br>
><br>
</div><div class="im">> So I tried downloading the Aquamacs binary and compiling that instead, but<br>
</div>> I couldn't get it to work. Every time I try to compile Aquamacs using make<br>
<div class="im">> or /.build-aquamacs, it gets stuck on:<br>
><br>
> Compiling<br>
> /Applications/aquamacs-emacs-binary/lisp/international/ucs-normalize.el<br>
><br>
</div><div class="im">> All I want is to run Aquamacs with a recent version of org-mode... with<br>
> enough speed that I don't have to wait ten seconds every time I open a new<br>
> file!<br>
><br>
> Any thoughts? Thanks for any help.<br>
<br>
</div>I have been running org-mode from git under Aquamacs for ages now.  I am<br>
not able to determine from what you say above what might be going wrong.<br>
<br>
What I do is:<br>
<br>
1. pull the aquamacs source from git<br>
2. build with 'make all'.  Note that to do this I had to mess with the<br>
   Makefile to get it to find Aquamacs and use its byte compiler. [I won-<br>
   der if your bug is from getting some other emacs's byte-compiler on<br>
   your mac when you run the makefile...]<br>
3. I doubt that `make install` will do anything great with Aquamacs<br>
   (but I might be wrong).  Instead, what I do is mess with the emacs<br>
   load-path in order to get it to load my org-mode library instead of<br>
   the one that comes with Aquamacs.  In my .emacs, I do:<br>
<br>
(add-to-list 'load-path (concat my-emacs-directory "org-mode/lisp"))<br>
(add-to-list 'load-path (concat my-emacs-directory "org-mode/contrib/lisp"))<br>
<br>
[You will see that I have defined my-emacs-directory first...]<br>
<br>
This is old-school -- I do this in my emacs config files rather than using<br>
customize, since I use emacs on multiple machines and operating systems. For<br>
more conventional uses there may be an approach using customize that achieves<br>
the same as the above, but does the right thing.<br>
<div class="HOEnZb"><div class="h5"><br>
_____________________________________________________________<br>
MacOSX-Emacs mailing list<br>
<a href="mailto:MacOSX-Emacs@email.esm.psu.edu">MacOSX-Emacs@email.esm.psu.edu</a><br>
<a href="http://email.esm.psu.edu/mailman/listinfo/macosx-emacs" target="_blank">http://email.esm.psu.edu/mailman/listinfo/macosx-emacs</a><br>
List Archives: <a href="http://dir.gmane.org/gmane.emacs.macintosh.osx" target="_blank">http://dir.gmane.org/gmane.emacs.macintosh.osx</a><br>
</div></div></blockquote></div><br></div>