Existing users, log in.  New users, create a free account.  Lost password?

Mac OS X  |  Desktop Enhancements  |  Themes  |  XEmacs Wrapper

XEmacs Wrapper

XEmacs Wrapper - 1.05

wrapper to allow XEmacs to run from the Finder

All Time: (5.0)
This Version: Not rated (0.0)
Current Version: 1.05
Release Date: 2005-06-01
License: Freeware
Downloads (this version): 2,530
Downloads (all versions): 3,133

Feedback Summary:

This Version:
Overall Rating: Not rated (0.0) Features: Not rated (0.0) Support: Not rated (0.0)
Ease of Use: Not rated (0.0) Quality / Stability: Not rated (0.0) Price: Not rated (0.0)
Add Your Feedback

Key to Types of Feedback:

ReviewsReviews   TroubleshootingTroubleshooting   Usage TipsUsage Tips   Developer NotesDeveloper Notes   CommentaryCommentary   Featured ReviewsFeatured Reviews

All Feedback: 1 - 10 of 15 |  1 2 Next



XEmacs Wrapper Usage TipLooking for this for ages - Version: 1.05, 6/7/2005 11:41PM PST

pcollinson
Many thanks for this.

I want to use /sw/bin/emacs - and have found I can do that
by altering XEmacs Wrapper.app/Contents/Resources/script so
the line
cmd="xemacs"
reads
cmd="/sw/bin/emacs"

Post a commentAlert Admin

Most Recent Replies: View All 1 Replies

XEmacs Wrapper Developer NoteMultiplying Comments - Version: 1.04, 6/1/2005 10:00AM PST

hypert3000

I just posted a reply to Edwin-schemer's bug report. I now see that there are multiple copies of my comments. I can also see that some of the previous comments for this SW are being duplicated many times.

I have no idea why the same Comments are showing up multiple times here, but I have notified VersionTracker. Hopefully they can fix it...

Post a commentAlert Admin

XEmacs Wrapper Troubleshooting ReportYour wrapper start X11, but fails to launch xemacs - Version: 1.04, 5/27/2005 10:28AM PST

Edwin-schemer
Dera hypert,
When I double-click on your wrapper, X11 gets launched, but xemacs does not start up.
I have xemacs-21.5.20, compiled with gcc-4, and installed in the standard location /usr/local/bin/xemacs, with Apple's X11 from the 10.4 Xcode installation.
I usually start Xemacs manually from an xterm, since otherwise it does not get my full $PATH (including /usr/local/teTeX/bin, which is essential fo running AucTeX directly from the buffer).
I watched processes in "top" and whenever I click on your wrapper, Xemacs starts up for a while, and then exits.

The console log says:
CTVD X11DO: Connecting to new XDisplay
Gui error: X server not responding
, "127.0.0.1:0.0"

My Display is :0.0, rather than 127.0.0.1:0.0.
Is there a simple way to fix it? Maybe you could make the source code available, so we could recompile it for the specific local evironment?
Thanks in advance!

Post a commentAlert Admin

Most Recent Replies: View All 3 Replies

XEmacs Wrapper CommentaryGreat idea. I made one too. - Version: 1.04, 5/26/2005 08:45PM PST

(2 of 3 users found this comment useful)

wgscott
I was curious to see how similar mine was to yours. I have the following differences, which, if you want, you should feel free to make use of any that might be worthwhile: 1. open -a X11 avoids using the osascript to call X11 2. I cd to the directory containing the edited file that is dragged and dropped onto the app. 3. The code below handles all the spaces -- zsh treats this stuff as arrays and doesn't split words with the spaces. 4. I only made mine for fink but it could be extended. Another improvement would be to check what the DISPLAY really should be set to for multiple users (it isn't always :0.0). I have a zsh script that does that too. #!/bin/zsh -f argarray=("$@") filepath=($argarray[2,-1]) if [[ -d /Applications/Utilities/X11.app ]];then open -a X11 fi if [[ -d /sw/bin ]];then source /sw/bin/init.sh fi export DISPLAY=:0.0 cd "$(dirname "$filepath" )" xemacs "$(basename "$filepath" )"
Post a commentAlert Admin

Most Recent Replies: View All 1 Replies

XEmacs Wrapper CommentaryGreat idea. I made one too. - Version: 1.04, 5/26/2005 08:43PM PST

(0 of 1 users found this comment useful)

wgscott
I was curious to see how similar mine was to yours. I have the following differences, which, if you want, you should feel free to make use of any that might be worthwhile: 1. open -a X11 avoids using the osascript to call X11 2. I cd to the directory containing the edited file that is dragged and dropped onto the app. 3. The code below handles all the spaces -- zsh treats this stuff as arrays and doesn't split words with the spaces. 4. I only made mine for fink but it could be extended. Another improvement would be to check what the DISPLAY really should be set to for multiple users (it isn't always :0.0). I have a zsh script that does that too. #!/bin/zsh -f argarray=("$@") filepath=($argarray[2,-1]) if [[ -d /Applications/Utilities/X11.app ]];then open -a X11 fi if [[ -d /sw/bin ]];then source /sw/bin/init.sh fi export DISPLAY=:0.0 cd "$(dirname "$filepath" )" xemacs "$(basename "$filepath" )"
Post a commentAlert Admin

XEmacs Wrapper CommentaryGreat idea. I made one too. - Version: 1.04, 5/26/2005 08:37PM PST

(0 of 1 users found this comment useful)

wgscott
I was curious to see how similar mine was to yours. I have the following differences, which, if you want, you should feel free to make use of any that might be worthwhile: 1. open -a X11 avoids using the osascript to call X11 2. I cd to the directory containing the edited file that is dragged and dropped onto the app. 3. The code below handles all the spaces -- zsh treats this stuff as arrays and doesn't split words with the spaces. 4. I only made mine for fink but it could be extended. Another improvement would be to check what the DISPLAY really should be set to for multiple users (it isn't always :0.0). I have a zsh script that does that too. #!/bin/zsh -f argarray=("$@") filepath=($argarray[2,-1]) if [[ -d /Applications/Utilities/X11.app ]];then open -a X11 fi if [[ -d /sw/bin ]];then source /sw/bin/init.sh fi export DISPLAY=:0.0 cd "$(dirname "$filepath" )" xemacs "$(basename "$filepath" )"
Post a commentAlert Admin

XEmacs Wrapper CommentaryGreat idea. I made one too. - Version: 1.04, 5/26/2005 08:35PM PST

(1 of 1 users found this comment useful)

wgscott
I was curious to see how similar mine was to yours. I have the following differences, which, if you want, you should feel free to make use of any that might be worthwhile: 1. open -a X11 avoids using the osascript to call X11 2. I cd to the directory containing the edited file that is dragged and dropped onto the app. 3. The code below handles all the spaces -- zsh treats this stuff as arrays and doesn't split words with the spaces. 4. I only made mine for fink but it could be extended. Another improvement would be to check what the DISPLAY really should be set to for multiple users (it isn't always :0.0). I have a zsh script that does that too. #!/bin/zsh -f argarray=("$@") filepath=($argarray[2,-1]) if [[ -d /Applications/Utilities/X11.app ]];then open -a X11 fi if [[ -d /sw/bin ]];then source /sw/bin/init.sh fi export DISPLAY=:0.0 cd "$(dirname "$filepath" )" xemacs "$(basename "$filepath" )"
Post a commentAlert Admin

XEmacs Wrapper Commentarygreat! - Version: 1.03, 5/26/2005 07:50AM PST

lp15
What a great idea. Can either be clicked directly or set via "open with" as the default application for certain document types.
Post a commentAlert Admin

Most Recent Replies: View All 1 Replies

XEmacs Wrapper Commentarygreat! - Version: 1.03, 5/26/2005 07:47AM PST

lp15
What a great idea. Can either be clicked directly or set via "open with" as the default application for certain document types.
Post a commentAlert Admin

XEmacs Wrapper Commentarygreat! - Version: 1.03, 5/26/2005 07:41AM PST

lp15
What a great idea. Can either be clicked directly or set via "open with" as the default application for certain document types.
Post a commentAlert Admin