From david.reitter at gmail.com Sun Jun 7 19:35:41 2009 From: david.reitter at gmail.com (David Reitter) Date: Sun Jun 7 19:42:44 2009 Subject: [OS X Emacs] Aquamacs Emacs 1.8 release candidate 1 Message-ID: Aquamacs Emacs 1.8 release candidate 1 is now available for public testing. Version 1.8 will contain bug fixes and support for direct tab switching by keyboard. A change log is available here (at the bottom): http://aquamacs.org/nightlies.shtml#changelog-latest For the direct download, click here: http://aquamacs.org/download-preview.shtml Please do not publish this link elsewhere; we will release the final version in due time. Bug-reports, as usual, to aquamacs-bugs@aquamacs.org (just e-mail - no subscription needed). -- http://aquamacs.org -- Aquamacs: Emacs on Mac OS X http://aquamacs.org/donate -- Could we help you? Return the favor and support the Aquamacs Project! -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2193 bytes Desc: not available Url : http://email.esm.psu.edu/pipermail/macosx-emacs/attachments/20090607/eb23014d/smime.bin From saptarshi.guha at gmail.com Tue Jun 9 11:44:55 2009 From: saptarshi.guha at gmail.com (Saptarshi Guha) Date: Tue Jun 9 12:30:58 2009 Subject: [OS X Emacs] Play flash(e.g youtube links) in Aquamacs Message-ID: <1e7471d50906090844r7afd1deeree28b5f468dc5aeb@mail.gmail.com> Hello, I was wondering if there are any available modes that play Flash in aquamacs. The more I use emacs the more I realize it can do everything (e.g I came across video editor in emacs). Since I haven't come across anything on the web, I was wondering it is possible. Regards Saptarshi From jean.christophe.helary at gmail.com Wed Jun 17 23:01:04 2009 From: jean.christophe.helary at gmail.com (Jean-Christophe Helary) Date: Wed Jun 17 23:50:23 2009 Subject: [OS X Emacs] tabs ? spaces ? Message-ID: <1D98C922-FBF2-4630-8FAE-D1F6F548D17B@gmail.com> I am editing a readme.txt file. When I indent lines with the tab key, sometimes I get a tab, sometimes I get 3 spaces, sometimes 5. I don't care about spaces or tags, but I can't see the pattern in what's going on and I'd like some consistency... What is going on here ? Jean-Christophe Helary ------------------------------------ http://mac4translators.blogspot.com/ From Peter_Dyballa at Web.DE Thu Jun 18 03:18:10 2009 From: Peter_Dyballa at Web.DE (Peter Dyballa) Date: Thu Jun 18 03:18:23 2009 Subject: [OS X Emacs] tabs ? spaces ? In-Reply-To: <1D98C922-FBF2-4630-8FAE-D1F6F548D17B@gmail.com> References: <1D98C922-FBF2-4630-8FAE-D1F6F548D17B@gmail.com> Message-ID: Am 18.06.2009 um 05:01 schrieb Jean-Christophe Helary: > I don't care about spaces or tags, but I can't see the pattern in > what's going on and I'd like some consistency... C-q TAB will make it consistent. (TAB in a text buffer will stop where in the line above a word starts. A nice feature?) -- Greetings Pete Atheism is a non prophet organization. From jean.christophe.helary at gmail.com Thu Jun 18 03:28:37 2009 From: jean.christophe.helary at gmail.com (Jean-Christophe Helary) Date: Thu Jun 18 03:28:46 2009 Subject: [OS X Emacs] tabs ? spaces ? In-Reply-To: References: <1D98C922-FBF2-4630-8FAE-D1F6F548D17B@gmail.com> Message-ID: On jeudi 18 juin 09, at 16:18, Peter Dyballa wrote: > > Am 18.06.2009 um 05:01 schrieb Jean-Christophe Helary: > >> I don't care about spaces or tags, but I can't see the pattern in >> what's going on and I'd like some consistency... > > > C-q TAB will make it consistent. (TAB in a text buffer will stop > where in the line above a word starts. A nice feature?) Thank you Peter. It is indeed a nice feature when the font is monospace. When it is not, it is rather confusing... Is there a way (like in other text editors) to set TAB as being the charater entered when TAB is hit ? Jean-Christophe Helary ------------------------------------ http://mac4translators.blogspot.com/ From Peter_Dyballa at Web.DE Thu Jun 18 03:55:43 2009 From: Peter_Dyballa at Web.DE (Peter Dyballa) Date: Thu Jun 18 03:55:51 2009 Subject: [OS X Emacs] tabs ? spaces ? In-Reply-To: References: <1D98C922-FBF2-4630-8FAE-D1F6F548D17B@gmail.com> Message-ID: <49CFD723-4D62-4A73-99F8-32D4224F7158@Web.DE> Am 18.06.2009 um 09:28 schrieb Jean-Christophe Helary: > Is there a way (like in other text editors) to set TAB as being the > charater entered when TAB is hit ? Change the key binding. When you press a key in GNU Emacs you invoke a function. Often this function just inserts the character for which the key pressed stands. Some times it's different, and this is particularly true with TAB, RET, C-j. You can use C-q TAB. You can use a function which rebinds TAB and becomes part of text- mode-hook, i.e., this rebinding only happens when text-mode gets applied in some buffer. Don't rebind TAB globally! -- Greetings Pete Claiming that the Macintosh is inferior to Windows because most people use Windows, is like saying that all other restaurants serve food that is inferior to McDonald's. From jean.christophe.helary at gmail.com Thu Jun 18 04:31:53 2009 From: jean.christophe.helary at gmail.com (Jean-Christophe Helary) Date: Thu Jun 18 04:39:32 2009 Subject: [OS X Emacs] tabs ? spaces ? In-Reply-To: <49CFD723-4D62-4A73-99F8-32D4224F7158@Web.DE> References: <1D98C922-FBF2-4630-8FAE-D1F6F548D17B@gmail.com> <49CFD723-4D62-4A73-99F8-32D4224F7158@Web.DE> Message-ID: <410E6508-2BB8-40B8-9716-BB471A5A8571@gmail.com> On jeudi 18 juin 09, at 16:55, Peter Dyballa wrote: > > Am 18.06.2009 um 09:28 schrieb Jean-Christophe Helary: > >> Is there a way (like in other text editors) to set TAB as being the >> charater entered when TAB is hit ? > > Change the key binding. When you press a key in GNU Emacs you invoke > a function. Indeed ! I had forgotten it was the case also for single keys... > Don't rebind TAB globally! Why ? Are there cases where TAB triggers vastly different ? Jean-Christophe Helary ------------------------------------ http://mac4translators.blogspot.com/ From Peter_Dyballa at Web.DE Thu Jun 18 05:51:42 2009 From: Peter_Dyballa at Web.DE (Peter Dyballa) Date: Thu Jun 18 05:51:48 2009 Subject: [OS X Emacs] tabs ? spaces ? In-Reply-To: <410E6508-2BB8-40B8-9716-BB471A5A8571@gmail.com> References: <1D98C922-FBF2-4630-8FAE-D1F6F548D17B@gmail.com> <49CFD723-4D62-4A73-99F8-32D4224F7158@Web.DE> <410E6508-2BB8-40B8-9716-BB471A5A8571@gmail.com> Message-ID: Am 18.06.2009 um 10:31 schrieb Jean-Christophe Helary: > Why ? Are there cases where TAB triggers vastly different ? Of course. -- Greetings Pete I wouldn't recommend sex, drugs or insanity for everyone, but they've always worked for me. ? Hunter S. Thompson From david.reitter at gmail.com Thu Jun 18 11:55:59 2009 From: david.reitter at gmail.com (David Reitter) Date: Thu Jun 18 12:18:11 2009 Subject: [OS X Emacs] Aquamacs Emacs 1.8 Message-ID: <827F179C-5291-45DE-83E5-FFCE4170E06C@gmail.com> The Aquamacs Project has released Aquamacs Emacs 1.8, an improved version of the leading Mac-friendly variant of the widely-used editor GNU Emacs. It is a versatile, fast and mature editor for source code, web pages, typesetting documents and all other forms of text. Emacs is a text editor of legendary flexibility and has made millions of programmers and writers more productive. Numerous packages allow users to extend its functionality. Version 1.8 addresses issues reported by users and adds a function to select tabs directly using numeric keys. Direct download link: http://aquamacs.org/download-release.shtml Change log and downloads: http://aquamacs.org/download.shtml#changelog From agw at comcast.net Fri Jun 19 18:27:49 2009 From: agw at comcast.net (Art Werschulz) Date: Fri Jun 19 18:41:03 2009 Subject: [OS X Emacs] Aquamacs Emacs 1.8 In-Reply-To: <827F179C-5291-45DE-83E5-FFCE4170E06C@gmail.com> References: <827F179C-5291-45DE-83E5-FFCE4170E06C@gmail.com> Message-ID: <594DA171-2931-4797-A9ED-09A9DB3C601C@comcast.net> Hi. Thanks for getting out the new version. When I fire up gnus, I get a msg saying You should byte-compile GNUS I don't recall seeing this before. Art Werschulz 207 Stoughton Avenue, Cranford NJ 07016-2838 (908) 272-1146 From mcg at gilbert.org Tue Jun 23 23:36:10 2009 From: mcg at gilbert.org (Michael Gilbert) Date: Wed Jun 24 00:01:34 2009 Subject: [OS X Emacs] OrgMode refile error - Kill is not a (set of) trees Message-ID: Hi all -- I am a noob - drawn to the alien world of Emacs (from my familiar Mac environment) by OrgMode. I am uncertain enough that I don't rightly know if this is best described as an OrgMode error or an Emacs error, but since OM is bundled and I am using nightly builds, I figured I would start here. I am using last night's build. In OrgMode, I am trying to learn to refile tasks. I use C-c C-w on a TODO item in a notes file. It goes through the process of allowing me to select the destination for the item. But then it throws an error - "Kill is not a (set of) trees" etc - every time. Doesn't kill the TODO and obviously doesn't yank it to the new location. Any advice? -- Michael From david.reitter at gmail.com Wed Jun 24 10:58:40 2009 From: david.reitter at gmail.com (David Reitter) Date: Wed Jun 24 13:34:28 2009 Subject: [OS X Emacs] Fwd: Emacs's org-mode finalist for the SourceForge Community Choices Award References: <87d48tkam5.fsf@bzg.ath.cx> Message-ID: <1B507A15-7D7E-4A63-A893-63E84A43A5FF@gmail.com> Begin forwarded message: > From: Bastien > Date: June 24, 2009 9:46:42 AM EDT > To: emacs-devel@gnu.org > Subject: Emacs's org-mode finalist for the SourceForge Community > Choices Award > > Emacs's org-mode is a finalist for the SourceForge Community Choices > Award in the category "Most Likely to Change the Way You Do > Everything." > > If you're a happy org-mode user, you can submit your vote here: > > http://sf.net/community/cca09/vote/?f=401 > > If you want to advertize this and place a badge on your website, here > is the HTML snippet you can use: > > > > > > It is a great opportunity for both Org project and the Emacs community > as a whole. Winning this award would be the best reward one can > imagine > for Carsten's tireless dedication and for Org's community imagination. > > For a short preview of what is Org-mode here is a small video: > > http://vimeo.com/5155665 > > Thanks for your time & attention! > > -- > Bastien > > From vollmar at nf.mpg.de Thu Jun 25 18:35:27 2009 From: vollmar at nf.mpg.de (Stefan Vollmar) Date: Thu Jun 25 21:35:36 2009 Subject: [OS X Emacs] to wrap or not to wrap (for org-mode) Message-ID: Hello, this is a topic which might be related to Aquamacs and not limited to org-mode so I posted to both lists - sorry for the hassle. Aquamacs 1.8a, org-mode 6.28b Aquamacs offers (Options Menu): Hard Word Wrap, Soft Word Wrap and Auto Word Wrap. I think Soft Word Wrap is very convenient for writing text (for html-export) in org-mode, however, when comparing different versions of one document (from a subversion repository), finding differences is cumbersome for long-ish paragraphs as the granularity for comparisons is typically line-based. Another reason, why Soft Word Wrap (in its current incarnation?) maybe is not ideal for org-mode is the formatting of plain lists: - this is a list entry going on going on and going on and its second line should start with this type of indention - the next list item I found that M-q (fill-paragraph-or-region) sometimes will give me the proper indention in lists such as the above, and sometimes there is no indention. Things really get weired, if lines in a paragraph (with- new lines) have leading blanks - no wrap at all, the same effect if a "file:myimage.png" ends a paragraph. Any advice on a suitable mix of wrap options (or other workarounds) is appreciated. Warm regards, Stefan -- Dr. Stefan Vollmar, Dipl.-Phys. Max-Planck-Institut für neurologische Forschung Gleuelerstr. 50, 50931 Köln, Germany Tel.: +49-221-4726-213 FAX +49-221-4726-298 Tel.: +49-221-478-5713 Mobile: 0160-93874279 Email: vollmar@nf.mpg.de http://www.nf.mpg.de From david.reitter at gmail.com Fri Jun 26 13:57:41 2009 From: david.reitter at gmail.com (David Reitter) Date: Fri Jun 26 15:09:09 2009 Subject: [OS X Emacs] to wrap or not to wrap (for org-mode) In-Reply-To: References: Message-ID: <6A8B9790-E161-4099-8788-04F16AD4BC79@gmail.com> On Jun 25, 2009, at 6:35 PM, Stefan Vollmar wrote: > I found that M-q (fill-paragraph-or-region) sometimes will give me > the proper indention in lists such as the above, and sometimes there > is no indention. Things really get weired, if lines in a paragraph > (with- new lines) have leading blanks - no wrap at all, the same > effect if a "file:myimage.png" ends a paragraph. Generally, marking the paragraph as a region before you press M-q helps in such situations (in Aquamacs). This function does not recognize the paragraph as such if there are leading spaces. -- http://aquamacs.org -- Aquamacs: Emacs on Mac OS X http://aquamacs.org/donate -- Could we help you? Return the favor and support the Aquamacs Project! -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2193 bytes Desc: not available Url : http://email.esm.psu.edu/pipermail/macosx-emacs/attachments/20090626/acf0e2c3/smime.bin From david.strozzi at gmail.com Fri Jun 26 22:26:33 2009 From: david.strozzi at gmail.com (David Strozzi) Date: Fri Jun 26 22:50:29 2009 Subject: [OS X Emacs] LaTeX toolbar problem In-Reply-To: References: <1A61EE0F-1D94-43F7-9092-5CE0668CF41A@mx6.tiki.ne.jp> Message-ID: Hi, I've had a problem for several months when opening latex files in aquamacs. I'm using ver 1.8 on a 10.5.7 ppc laptop, but the same thing happened in v 1.7 and maybe earlier. just too lazy to deal til now. I'm attaching a backtrace file. It seems the problem is related to the toolbar. I have the emacs toolbar turned off. I changed a few toolbar-related tex settings to off, but the same thing still happens. Any ideas? Thanks, Dave -------------- next part -------------- Debugger entered--Lisp error: (wrong-type-argument stringp nil) directory-file-name(nil) #[(x) "ÁÂ!!Ã?? ?" [x file-name-nondirectory directory-file-name ("toolbar" "images")] 3](nil) mapcar(#[(x) "ÁÂ!!Ã?? ?" [x file-name-nondirectory directory-file-name ("toolbar" "images")] 3] (nil "~/emacs" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/nxml/" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/auctex" "/Users/strozzi2/Library/Preferences/Aquamacs Emacs" "/Users/strozzi2/Library/Preferences/Aquamacs Emacs/auto-save-list" "/Users/strozzi2/Library/Preferences/Emacs" "/Library/Preferences/Aquamacs Emacs" "/Library/Preferences/Emacs" "/Users/strozzi2/Library/Application Support/Aquamacs Emacs" "/Users/strozzi2/Library/Application Support/Aquamacs Emacs/Temporary Files" "/Users/strozzi2/Library/Application Support/Emacs" "/Library/Application Support/Aquamacs Emacs" "/Library/Application Support/Emacs" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/macosx" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/oneonone" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/tabbar" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/elib" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/emacs-rails" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/ess-mode" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/haskell-mode" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/info" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/nxml" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/python-mode" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/ess-mode/etc" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/ess-mode/lisp" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/nxml/char-name" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/nxml/schema" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/ess-mode/etc/icons" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/ess-mode/etc/other" "/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/nxml/char-name/unicode" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/url" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/textmodes" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/progmodes" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/play" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/obsolete" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/net" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/mh-e" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/mail" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/language" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/international" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/gnus" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/eshell" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/erc" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/emulation" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/emacs-lisp" "/Applications/Aquamacs Emacs.app/Contents/Resources/lisp/calendar" ...)) byte-code("ÂÃÄÅ\"\" ÆPC¤?" [load-path data-directory delq nil mapcar #[(x) "ÁÂ!!Ã?? ?" [x file-name-nondirectory directory-file-name ...] 3] "images/"] 5) (defvar toolbarx-image-path (byte-code "ÂÃÄÅ\"\" ÆPC¤?" [load-path data-directory delq nil mapcar #[... "ÁÂ!!Ã?? ?" [x file-name-nondirectory directory-file-name ...] 3] "images/"] 5) ("/Applications/Aquamacs Emacs.app/Contents/Resources/site-lisp/edit-modes/auctex/toolbar-x.elc" . 617)) require(toolbar-x) byte-code("ÀÁ!?ÀÂ!?ÀÃ!?ÀÄ!?" [require custom toolbar-x tex-buf latex] 2) LaTeX-install-toolbar() run-hooks(text-mode-hook TeX-mode-hook LaTeX-mode-hook) apply(run-hooks (text-mode-hook TeX-mode-hook LaTeX-mode-hook)) TeX-run-mode-hooks(text-mode-hook TeX-mode-hook LaTeX-mode-hook) latex-mode() tex-mode() set-auto-mode-0(tex-mode nil) set-auto-mode() normal-mode(t) after-find-file(nil t) find-file-noselect-1(# "~/plasma/cheatsheet_gen/cheatsheet-gen.tex" nil nil "~/plasma/cheatsheet_gen/cheatsheet-gen.tex" (2555649 234881033)) find-file-noselect("/Users/strozzi2/plasma/cheatsheet_gen/cheatsheet-gen.tex" nil nil nil) (let ((value ...)) (if tabbar-mode (if ... ... ...) (if ... ...) (switch-to-buffer value))) aquamacs-find-file-2("/Users/strozzi2/plasma/cheatsheet_gen/cheatsheet-gen.tex") menu-function-9() call-interactively(menu-function-9) From david.reitter at gmail.com Sat Jun 27 19:59:09 2009 From: david.reitter at gmail.com (David Reitter) Date: Sat Jun 27 20:52:04 2009 Subject: [OS X Emacs] LaTeX toolbar problem In-Reply-To: References: <1A61EE0F-1D94-43F7-9092-5CE0668CF41A@mx6.tiki.ne.jp> Message-ID: David, this seems to be a problem (bug?) in AUCTeX, so maybe they need to deal with it primarily. My first guess is that you may have a "toolbar" and/or "images" file (or directory) in your load path that is shadowing the icon files provided within the Aquamacs bundle. But it could be something completely different, of course. - David -- http://aquamacs.org -- Aquamacs: Emacs on Mac OS X http://aquamacs.org/donate -- Could we help you? Return the favor and support the Aquamacs Project! On Jun 26, 2009, at 10:26 PM, David Strozzi wrote: > Hi, > > I've had a problem for several months when opening latex files in > aquamacs. I'm using ver 1.8 on a 10.5.7 ppc laptop, but the same > thing happened in v 1.7 and maybe earlier. just too lazy to deal til > now. > > I'm attaching a backtrace file. It seems the problem is related to > the toolbar. I have the emacs toolbar turned off. I changed a few > toolbar-related tex settings to off, but the same thing still happens. > > Any ideas? > > Thanks, > Dave > backtrace > .txt>_____________________________________________________________ > MacOSX-Emacs mailing list > MacOSX-Emacs@email.esm.psu.edu > http://email.esm.psu.edu/mailman/listinfo/macosx-emacs > List Archives: http://dir.gmane.org/gmane.emacs.macintosh.osx -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2193 bytes Desc: not available Url : http://email.esm.psu.edu/pipermail/macosx-emacs/attachments/20090627/33fcb538/smime.bin