Hi,
I've been seeing xemacs abort in the following code in window.c:
if (++lose_lose >= 500)
{
/* Call to abort() added by Darryl Okahata (16 Nov. 2001),
at Ben's request, to catch any remaining bugs.
If you find that XEmacs is aborting here, and you
need to be up and running ASAP, it should be safe to
comment out the following abort(), as long as you
leave the "break;" alone. */
abort();
break; /* <--- KEEP THIS HERE! Do not delete! …
[View More] */
}
now and then. I cannot reliably reproduce the problem, but here
are the two scenarios that seem to trigger it:
1. With an xemacs running at work, I ssh in from home and use
gnuclient to make a new frame onto my home machine. I read email
using VM and GNUS and at some point it goes poof. This happens
maybe one time out of five.
2. Running an xemacs locally, I hit keys I have bound in my window
manager to iconify xemacs' only frame and it goes poof. This case
happens much less frequently than #1.
Below is the top of a lisp backtrace from over the weekend (case 1
above). I could also try to get a C backtrace/core dump if helpful.
I'd be happy to insert some debugging print statements if there's any
info that would help someone debug this. For now I have recompiled
with the abort() commented out.
thanks,
greg
get-buffer-window(#<buffer "realestate Summary"> visible)
# bind (name limit on-frame not-this-window-p buffer)
get-frame-for-buffer-noselect(#<buffer "realestate Summary"> nil nil)
# bind (on-frame not-this-window-p buffer)
get-frame-for-buffer(#<buffer "realestate Summary"> nil nil)
# bind (window old-frame target-frame explicit-frame)
byte-code("..." [explicit-frame tem car target-frame buffer window nil last-no
nminibuf-frame selected-frame get-buffer bufferp wrong-type-argument throw done
buffer-dedicated-frame frame-live-p window-buffer selected-window display-buffer
-1 buffer-name assoc switch-to-buffer string-match 0 get-buffer-window frame-sel
ected-window set-window-buffer frame-property minibuffer only window-dedicated-p
frame-root-window unsplittable get-largest-window visible t window-frame window
-height window-width window-leftmost-p window-rightmost-p split-window get-lru-w
indow window-parent window-previous-child window-next-child window-pixel-edges w
indow-pixel-height enlarge-window 2 ((byte-code "!«
!Á" ... 2)) select-window rec
ord-buffer override-frame other not-this-window-p special-display-function upper
old-frame dedi split-height-threshold window-min-height split-width-threshold p
re-display-buffer-function display-buffer-function same-window-buffer-names pop-
up-frames special-display-buffer-names pop-up-frame-function window-min-width sa
me-window-regexps special-display-regexps pop-up-windows ssw54065] 7)
# (catch done ...)
# bind (override-frame not-this-window-p buffer)
display-buffer(#<buffer "realestate Summary">)
# bind (pop-up-windows pop-up-frames buffer)
vm-display-buffer(#<buffer "realestate Summary">)
# bind (wf w)
# (unwind-protect ...)
# bind (vm-sbe-buffer do-not-raise configs commands display buffer)
vm-display(#<buffer "realestate Summary"> t (vm-summarize vm-summarize-other-f
rame) (vm-visit-folder) t)
# (unwind-protect ...)
# bind (raise display)
vm-summarize(t nil)
# bind (full-startup did-read-index-file folder-buffer first-time totals-blurb
folder-name remote-spec preserve-auto-save-file)
byte-code("..." [totals-blurb preserve-auto-save-file file full-startup folder
buffer-file-coding-system bufferp nil pop vm-pop-find-spec-for-name error "No s
uch POP folder: %s" vm-pop-make-filename-for-spec expand-file-name file-director
y-p "%s is a directory" vm-get-file-buffer t no-conversion raw-text message "Rea
ding %s..." find-file-noselect "Reading %s... done" buffer-name rename-buffer se
t-buffer-multibyte get-coding-system no-conversion-unix no-conversion-dos no-con
version-mac binary buffer-modified-p ((set-buffer-modified-p omodified)) encode-
[View Less]
Hi,
If "xemacs -vanilla" (21.5-b11 or 21.4.12) is run with the following X
resources set:
XEmacs.default.attributeForeground: white
XEmacs.default.attributeBackground: midnightblue
You see all sorts of display cruft along the outer edges of the frame.
Random grey lines appear frequently when listing completions and
aborting out of completion listing commands. For example,
C-x C-f <space>
results in a grey line drawn along the bottommost pixel or two of the
frame (under the …
[View More]minibuffer). If I then do:
C-g
I'm left with a short vertical grey bar along the left edge of the
frame where the modeline was for the split window when showing
completions. This is not completely deterministic, sometimes
everything is fine, other times the vertical bar extends along the
whole extent of what was the upper window.
If I load a file (C-x C-f) and then kill the buffer (C-x k <RET>) then
the entire left edge of the frame has a two pixel wide vertical grey
line. C-l clears it.
I can send screenshots if anyone is interested.
The bug does not appear in 21.4.6 (as distributed with RH 7.3).
The problems show whether or not the buffers-tab is on or off, though
I suspect has something to do with that code or the code supporting
it.
thanks,
Greg
[View Less]
Yes, really! In XEmacs MULE 21.5 (and 21.4 too).
Cyrillic letters are being displayed correctly in XEmacs under MULE, that's
true. BUT! many files, written in Russian, espesially in news groups contain
non-cyrillic graphic characters. Examples are: "em dash" and "en dash", single
and double quotes [1] in cp1251, box drawing in koi8-r.
XEmacs maps codepoints that correspond to the mentioned chars into chinese and
japanese charsets. I don't have ISO-2022 on my hands, but I am pretty sure
…
[View More]that the standard positions those chars in Far East charsets.
This leads to a funny result -- when opening a text file in RUSSIAN, XEmacs
warns that it can not instantiate fonts for JAPANESE (CHINESE, KOREAN)!
Notice: Unable to instantiate font for charset korean-ksc5601, face default
Notice: Unable to instantiate font for charset chinese-cns11643-1, face default
Notice: Unable to instantiate font for charset japanese-jisx0208, face default
That is not a problem, but an annoying inconvenience.
I see severals ways to fix it.
1. Add entries to display table that map graphic characters to reasonable
substitutions (e.g. "en dash" to "-", "em dash" to "--").
2. Introduce a new non-standard charset that contains such characters and
specify a particular display policy for it.
3. Wait until full Unicodizing internals and hope the problem will disappear.
Current implementation of Unicode support maps box drawing and friends to
Far East charsets.
Any comments/opinions?
Nick.
Footnotes:
[1] MS Word loves to insert them into saved plain text
[View Less]
>>>>> "Michael" == Michael Searles <msearles(a)base16.com> writes:
Please don't drop xemacs-beta, Michael!
I am not prepared to give exclusinve help to every single XEmacs user.
Adrian
Michael> Hi Adrian,
Michael> At 02:01 AM 11/10/2003, you wrote:
>> >>>>> "Michael" == Michael Searles <msearles(a)base16.com> writes:
>>
Michael> Hi Adrian,
Michael> The glyphs display just fine. See attached.
>&…
[View More]gt;
>> Hi Michael, what about
>> src="c:\progra~1\xemacs\XEmacs-21.4.14\etc\recycle.xpm" width="51"
>> height="51"
>> specifically?
>>
>> Does it display uncorrupted?
Michael> It displays just fine using your code. See attached screenshot.
Michael> I also tried using "the other way to do that" section in the init.el file and
Michael> found that the following code works fine too -- I get a trash can
Michael> glyph displayed
Michael> just after I load a source file from dired (and whenever gc runs):
Michael> (if (featurep 'xpm)
Michael> (set-glyph-image gc-pointer-glyph
Michael> (expand-file-name "trash.xpm" data-directory)))
Michael> but if I change it to this (just changed trash.xpm to recycle.xpm):
Michael> (if (featurep 'xpm)
Michael> (set-glyph-image gc-pointer-glyph
Michael> (expand-file-name "recycle.xpm" data-directory)))
Michael> it crashes.
Ideas, anybody?
Michael> Best Regards,
Michael> Michael
--
Adrian Aichner
mailto:adrian@xemacs.org
http://www.xemacs.org/
[View Less]
Hi!
I get crashes with traces as the one enclosed here rather often
recently when reading or sending mails in Gnus, in fact after applying
Stephen's patch. Is this just another representation of the GC bug or
some other bug?
Thanks,
norbert.
--