Does xemacs have some equivalent of emacs :eval form for mode line
data, as mentioned here:
<http://www.gnu.org/software/emacs/elisp/html_node/Mode-Line-Data.html>
This shows up in slime where currently slime updates the modeline by
scanning every buffer to see if it is in slime-mode and updating the
modeline appropriately. When there are a dozen buffers or more, slime
drastically slows down.
(Well, I suppose it might help if I byte-compile the file....)
Ray
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/mailman/listinfo/xemacs-beta
The fix is to change
sed -i 's:<config.h>:"config.h":' lwlib/*.c
As you can see, it was pulling in the wrong config.h:
$ gcc -E -Wall -Wno-switch -Wundef -Wsign-compare -Wno-char-subscripts -Wpacked -Wpointer-arith -Wunused-parameter -g -I. -I/Users/jeremy/src/freedesktop/src/xemacs-21.5.29/lwlib/../src -DHAVE_CONFIG_H -I/usr/X11/include lwlib.c | grep config.h
# 1 "/Users/jeremy/src/freedesktop/src/xemacs-21.5.29/lwlib/../src/config.h" 1
# 929 "/Users/jeremy/src/freedesktop/src/xemacs-21.5.29/lwlib/../src/config.h"
# 930 "/Users/jeremy/src/freedesktop/src/xemacs-21.5.29/lwlib/../src/config.h" 2
This resulted in NEED_ATHENA not being defined when it needed to be and other build failures.
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/mailman/listinfo/xemacs-beta
I am attempting to update Fedora's package of the XEmacs packages to
the 2010 July 27 release. I've come across two oddities. I'll start
with the smallest one first. The dired ChangeLog in the new sumo
omits one entry that was in the previous sumo:
2008-01-13 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.19 released.
Then there's the big one. What happened with auctex? The diff
between the last sumo and this one shows that not only did a whole
bunch of stuff disappear, the versions moved backwards! Here are the
last three entries from the previous ChangeLog:
2008-11-19 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.51 released.
2008-09-29 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.50 released.
2007-01-12 Ralf Angeli <angeli(a)caeruleus.net>
* Version 11.84 released.
But our new sumo has XEmacs package version 1.49, containing auctex
11.54! I have checked, and both oddities are present in current CVS.
I also wrote a little script to compare all of the ChangeLogs, so I
can state authoritatively that there are no other ChangeLog omissions
from the previous release. I only checked ChangeLogs, though.
--
Jerry James
http://www.jamezone.org/
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/mailman/listinfo/xemacs-beta
When I try to launch oo-browser, I'm having trouble with the undefined
variable hyperb:mouse-buttons. I can't seem to figure out what it is
supposed to be set to (or where it was supposed to be set). Is anyone
using this package?
Thanks,
Rodney
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/mailman/listinfo/xemacs-beta
ACTIVITY SUMMARY (2010-08-03 - 2010-08-10)
XEmacs Issue Tracking System at http://tracker.xemacs.org/XEmacs/its/
To view or respond to any of the issues listed below, click on the issue
number. Do NOT respond to this message.
489 open ( +1) / 234 closed ( +0) / 723 total ( +1)
Open issues with patches: 12
Average duration of open issues: 630 days.
Median duration of open issues: 656 days.
Open Issues Breakdown
new 164 ( +1)
deferred 6 ( +0)
napping 4 ( +0)
verified 46 ( +0)
assigned 154 ( +0)
committed 25 ( +0)
documented 2 ( +0)
done/needs work 24 ( +0)
Issues Created Or Reopened (1)
______________________________
Main menubar accelerators need collision avoidance 2010-08-04
http://tracker.xemacs.org/XEmacs/its/issue725 created stephen
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/mailman/listinfo/xemacs-beta
Mats Lidell writes:
> I haven't investigated why but custom-loads was changed by the
> build so I included all changes in the patch. Apply as you find
> appropriate.
Oh, that was intentional? Sorry.
Changes in
configure
custom-loads.el
auto-autoloads.el
depends
and several other files that I can't remember offhand should *not* be
included in patches, because they are generated files. Most generated
files are ignored by the VCS, but these are special. configure and
depends are supposed to be committed when you make a change, but it is
the committer's responsibility to run autoconf and make depends, and
a patch proposal should not include such changes.
I'm not sure about the VCS status of custom-loads and auto-autoloads
in 21.4, but these files are generated by the build process, and
therefore changes to those files should not be included in the patch.
If you have any questions, feel free to ask. I know this stuff is
quite arcane.
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/mailman/listinfo/xemacs-beta
Hallo,
Just had to fiddle around quite a bit to get spell checking to work
cleanly with german umlauts. I run the latest xemacs mercurial on ubuntu
karmic
with "Ispell Version 3.1.20 (but really Aspell 0.60.6), ispell.el 3.6 -
01/07/2003".
The following turned out to work:
(set-terminal-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)
(prefer-coding-system 'utf-8)
(setq ispell-local-dictionary "myldeutsch8")
(custom-set-variables
'(ispell-program-name "aspell")
'(ispell-local-dictionary-alist
'(("myldeutsch8" "[a-zA-ZÄÖÜäößü]" "[^a-zA-ZÄÖÜäößü]" "[']" t
("--encoding=utf-8" "-C" "-d" "deutsch")
"~latin1" utf-8))
)
)
Maybe, the faq or the documentation in ispell.el could be amended.
--
thomas
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/mailman/listinfo/xemacs-beta
This is a problem that popped up after a software upgrade for Sun Ray
Server Software on Solaris. The fonts on the XEmacs menu were almost
illegible. I haven't been able to track down where this is coming from
and I have never seen a similar problem in over a decade of use with
XEmacs on Solaris. But, I just wanted to mention that there is a simple
fix for these X related issues if anyone has forgotten. I managed to
fix it by copying the etc/Emacs.ad file that comes with XEmacs to
/usr/openwin/lib/app-defaults/XEmacs and making a few edits (replacing
Emacs* with XEmacs*). I guess for non-Solaris users, it would be
/usr/lib/X11/app-defaults/XEmacs (as it alludes to in the file). This
had me up and running again in a matter of minutes. The hardest part
was finding Emacs.ad since I didn't recognize the suffix.
Rodney
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/mailman/listinfo/xemacs-beta