This bug report will be sent to the XEmacs Development Team,
not to your local site managers!!
Please write in English, because the XEmacs maintainers do not have
translators to read other languages for them.
In XEmacs 21.2 (beta28) "Hermes" [Lucid] (sparc-sun-solaris2.5.1, Mule) of Wed
Feb 9 2000 on zhora
configured using `configure --site-includes=/usr/local/include
--site-libraries=/usr/local/sun4/lib --prefix=/tools/xemacs-beta/21.2 --with-sound=none
--with-mule --debug=no --error-checking=none --without-tooltalk --without-workshop'
Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:
I started XEmacs with the command-line argument '-f gnus' to launch
right into Gnus. Reading comp.lang.python, I pressed ENTER in the
Summary Buffer to read this article:
[begin article]
Return-Path: <psilva(a)ruido-visual.pt>
Delivered-To: python-list(a)dinsdale.python.org
Message-ID: <000e01bf73d6$c481cde0$6c00a8c0(a)ruidovisual.pt>
Reply-To: "Pedro Silva" <pedro.silva(a)ruido-visual.pt>
From: "Pedro Silva" <psilva(a)ruido-visual.pt>
To: "Python - Questions" <python-list(a)python.org>
Subject: code to parse a file
Date: Thu, 10 Feb 2000 14:54:44 -0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
boundary="----=_NextPart_000_000B_01BF73D6.C467DD40"
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 5.00.2615.200
X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200
Sender: python-list-admin(a)python.org
Errors-To: python-list-admin(a)python.org
X-BeenThere: python-list(a)python.org
X-Mailman-Version: 1.2 (experimental)
Precedence: bulk
List-Id: General discussion list for the Python programming language
<python-list.python.org>
Errors-To: python-list-admin(a)python.org
X-BeenThere: python-list(a)python.org
Newsgroups: comp.lang.python
Lines: 106
NNTP-Posting-Host: dinsdale.cnri.reston.va.us
X-Original-NNTP-Posting-Host: dinsdale.cnri.reston.va.us
X-Trace: 10 Feb 2000 09:54:44 -0500, dinsdale.cnri.reston.va.us
Path:
newsmaster1.prod.itd.earthlink.net!nntp.earthlink.net!newsfeed1.earthlink.net!newsfeed.mathworks.com!newshub.northeast.verio.net!verio!hermes.visi.com!news-out.visi.com!uunet!ffx.uu.net!news!dinsdale.cnri.reston.va.us
Xref:
nntp.earthlink.net comp.lang.python:74040
This is a multi-part message in MIME format.
------=_NextPart_000_000B_01BF73D6.C467DD40
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hi
I had write some code in a Python Method, a Zope Product, that will open =
a file and will read line-by-line and check if some string is in that =
line, if yes, it will return the line to a variable.=20
The code I write is:
f=3Dopen('/var/spool/news/articles/esoterica/geral/1','r')
for lines in f.readline():
if string.find('From:'):
from=3Dlines
if string.find('Subject:'):
sub=3Dlines
if string.find('Date:'):
date=3Dlines
if string.find('Xref:'):
f.seek(0,2)
for text in f.read():
cont=3Dtext
return from,sub,date,cont
Is this code correct to do what I pretend?
If not, can anyone help me to solve this?
Please send your answers to: psilva(a)ruido-visual.pt
Thanks,
Pedro
------=_NextPart_000_000B_01BF73D6.C467DD40
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type>
<META content=3D"MSHTML 5.00.2614.3500" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>Hi</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial size=3D2>I had write some code in a Python =
Method, a Zope=20
Product, that will open a file and will read line-by-line and check if =
some=20
string is in that line, if yes, it will return the line to a variable.=20
</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>The code I write
is:</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial size=3D2>
=20
f=3Dopen('/var/spool/news/articles/esoterica/geral/1','r')<BR>  =
; =20
for lines in
f.readline():<BR>
=
if=20
string.find('From:'):<BR> =
=20
from=3Dlines<BR>
=
if=20
string.find('Subject:'):<BR> &nb=
sp; =20
sub=3Dlines<BR>
=
if=20
string.find('Date:'):<BR> =
=20
date=3Dlines<BR>
=
if=20
string.find('Xref:'):<BR> =
=20
f.seek(0,2)<BR> &nbs=
p; =20
for text in=20
f.read():<BR> =
&=
nbsp;=20
cont=3Dtext<BR>
return=20
from,sub,date,cont</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial size=3D2>Is this code correct to do what I=20
pretend?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>If not, can anyone help me to solve=20
this?</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial size=3D2>Please send your answers to: <A=20
href=3D"mailto:psilva@ruido-visual.pt">psilva@ruido-visual.pt</A></FONT><=
/DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial size=3D2>Thanks,</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial
size=3D2>Pedro</FONT></DIV></BODY></HTML>
------=_NextPart_000_000B_01BF73D6.C467DD40--
[end article]
XEmacs crashed as follows:
Fatal error (11).
Your files have been auto-saved.
Use `M-x recover-session' to recover them.
If you have access to the PROBLEMS file that came with your
version of XEmacs, please check to see if your crash is described
there, as there may be a workaround available.
Otherwise, please report this bug by running the send-pr
script included with XEmacs, or selecting `Send Bug Report'
from the help menu.
As a last resort send ordinary email to `crashes(a)xemacs.org'.
*MAKE SURE* to include the information in the command
M-x describe-installation.
If at all possible, *please* try to obtain a C stack backtrace;
it will help us immensely in determining what went wrong.
To do this, locate the core file that was produced as a result
of this crash (it's usually called `core' and is located in the
directory in which you started the editor, or maybe in your home
directory), and type
gdb /users/lipp/xemacs-beta/21.2/bin/xemacs core
then type `where' when the debugger prompt comes up.
(If you don't have GDB on your system, you might have DBX,
or XDB, or SDB. A similar procedure should work for all of
these. Ask your system administrator if you need more help.)
Lisp backtrace follows:
redisplay-frame()
# bind (inhibit-read-only zmacs-region-stays val frame value message)
raw-append-progress("Parsing 2k" 28 #<x-frame "emacs"
0xab1e>)
# bind (tmsg top frame value message label)
append-progress(progress "Parsing 2k" 28 nil)
# bind (frame value message label)
display-progress(progress "Parsing 2k" 28)
# bind (str args value fmt)
progress("Parsing %s" 28 "2k")
# bind (w3-p-s-btdt w3-p-s-baseobject w3-p-s-except w3-p-s-content-model
w3-p-s-tran-list w3-p-s-transition w3-p-s-state-transitions w3-p-s-includep w3-p-s-end-tag
w3-p-s-content w3-p-s-var w3-p-s-undo-list w3-p-s-overrides w3-p-s-num w3-p-s-pos
w3-p-s-entity open-list content content-model attr-value attr-name ref w3-p-d-exceptions
w3-p-d-shortref-chars w3-p-d-shortrefs w3-p-d-in-parsed-marked-section
w3-p-d-null-end-tag-enabled w3-p-d-non-markup-chars w3-p-d-debug-url
marked-section-undo-stack w3-p-d-open-element-stack w3-p-d-current-element tag-end
attribute-value-end tag-attributes net-tag-p w3-p-d-end-tag-p w3-p-d-tag-name
between-tags-end between-tags-start parse-buffer one-hundred status-message-format
loop-count last-loop-start gc-cons-threshold old-syntax-table buff)
w3-parse-buffer(#<buffer " *w3-region*">)
# (unwind-protect ...)
byte-code("..." [get-buffer-create " *w3-region*" erase-buffer
source w3-parse-buffer parse st nd w3-draw-tree nil widget glyph url
w3-image-widgets-waiting widget-get :src assoc w3-graphics-list (widget-value-set widget
glyph) ((error)) url-current-object 6 push-mark t w3-find-specific-link w3-running-xemacs
device-type tty w3-fixup-eol-faces message "Drawing... done"] 3)
# (unwind-protect ...)
# bind (parse w3-display-same-buffer source nd st)
w3-region(1435 3906)
byte-code("..." [w3-region] 3)
# (condition-case ... . ((error)))
# bind (w3-strict-width url-standalone-mode)
# (unwind-protect ...)
byte-code("..." [width t url-standalone-mode w3-strict-width var (byte-code
"Àed\"" [w3-region] 3) ((error))] 3)
# (unwind-protect ...)
# (unwind-protect ...)
# (unwind-protect ...)
# bind (b url-standalone-mode url-current-object width charset type text
buffer-read-only handle)
mm-inline-text((#<buffer " *mm*<2>"> ("text/html"
(charset . "iso-8859-1")) quoted-printable nil nil nil nil nil))
# bind (function type handle)
mm-display-inline((#<buffer " *mm*<2>"> ("text/html"
(charset . "iso-8859-1")) quoted-printable nil nil nil nil nil))
# bind (method type)
# (unwind-protect ...)
# bind (no-default handle)
mm-display-part((#<buffer " *mm*<2>"> ("text/html"
(charset . "iso-8859-1")) quoted-printable nil nil nil nil nil))
# bind (mail-parse-charset mail-parse-ignored-charsets)
# (unwind-protect ...)
byte-code("..." [ibegend 2 mm-remove-parts handles point-marker begend
preferred ihandles not-pref gnus-unbuttonized-mime-type-p
"multipart/alternative" gnus-add-text-properties from format "%d. "
id gnus-callback lambda (handles) unless setq gnus-article-mime-handle-alist quote
gnus-mime-display-alternative local-map gnus-mime-button-map gnus-mouse-face-prop
gnus-article-mouse-face face gnus-article-button-face keymap gnus-part gnus-data handle
widget-convert-button link :action gnus-widget-press-button :button-keymap
gnus-widget-button-keymap "(%c) %-18s" ?* ?\ 1 (handles) " "
"\n\n" gnus-display-mime gnus-newsgroup-charset gnus-summary-buffer
gnus-newsgroup-ignored-charsets mail-parse-ignored-charsets mail-parse-charset
mm-display-part gnus-treat-article nil gnus-article-mime-handles] 18)
# (unwind-protect ...)
# bind (not-pref begend props from buffer-read-only handle point ihandles preferred id
ibegend preferred handles)
gnus-mime-display-alternative(((#<buffer " *mm*">
("text/plain" ...) quoted-printable nil nil nil nil nil) (#<buffer "
*mm*<2>"> ("text/html" ...) quoted-printable nil nil nil nil nil))
nil nil 1)
# bind (id handle)
gnus-mime-display-part(("multipart/alternative" (#<buffer "
*mm*"> ("text/plain" ...) quoted-printable nil nil nil nil nil)
(#<buffer " *mm*<2>"> ("text/html" ...) quoted-printable
nil nil nil nil nil)))
# bind (gnus-displaying-mime display e b type name handle buffer-read-only handles)
# (unwind-protect ...)
# bind (save-selected-window-window)
# (unwind-protect ...)
# bind (ihandles)
gnus-display-mime()
# bind (gnus-article-buffer buffer-read-only)
gnus-article-prepare-display()
# (unwind-protect ...)
# bind (result group gnus-tmp-internal-hook summary-buffer gnus-article)
# (unwind-protect ...)
# bind (header all-headers article)
gnus-article-prepare(74040 nil)
# bind (all-header article)
gnus-summary-display-article(74040 nil)
# (unwind-protect ...)
# bind (article all-headers gnus-summary-display-article-function did article pseudo
force all-headers)
gnus-summary-select-article(nil nil pseudo)
# bind (lines)
gnus-summary-scroll-up(1)
# bind (command-debug-status)
call-interactively(gnus-summary-scroll-up)
# (condition-case ... . error)
# (catch top-level ...)
[1] Segmentation fault ~lipp/xemacs-beta/21.2/bin/xemacs -f gnus (core
dumped)
gdb /users/lipp/xemacs-beta/21.2/bin/xemacs core
GNU gdb 4.18
Copyright 1998 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "sparc-sun-solaris2.5.1"...
warning: core file may not match specified executable file.
Core was generated by `/users/lipp/xemacs-beta/21.2/bin/xemacs -f gnus'.
Program terminated with signal 11, Segmentation Fault.
Reading symbols from /usr/lib/libXm.so.3...done.
Reading symbols from /usr/openwin/lib/libtiff.so...done.
Reading symbols from /usr/local/sun4/lib/libpng.so.2...done.
Reading symbols from /usr/local/sun4/lib/libjpeg.so.62...done.
Reading symbols from /usr/local/sun4/lib/libz.so.1.1.3...done.
Reading symbols from /usr/openwin/lib/libXpm.so.4.10...done.
Reading symbols from /usr/lib/libXmu.so.4...done.
Reading symbols from /usr/lib/libXt.so.4...done.
Reading symbols from /usr/lib/libXext.so.0...done.
Reading symbols from /usr/lib/libX11.so.4...done.
Reading symbols from /usr/lib/libdl.so.1...done.
Reading symbols from /usr/lib/libkvm.so.1...done.
Reading symbols from /usr/lib/libkstat.so.1...done.
Reading symbols from /usr/lib/libintl.so.1...
warning: Lowest section in /usr/lib/libintl.so.1 is .dynamic at 0x74
done.
Reading symbols from /usr/lib/libm.so.1...done.
Reading symbols from /usr/lib/libsocket.so.1...done.
Reading symbols from /usr/lib/libnsl.so.1...done.
Reading symbols from /usr/lib/libelf.so.1...done.
Reading symbols from /usr/lib/libc.so.1...done.
Reading symbols from /usr/lib/libSM.so.6...done.
Reading symbols from /usr/lib/libICE.so.6...done.
Reading symbols from /usr/lib/libmp.so.2...done.
Reading symbols from /usr/platform/SUNW,Ultra-4/lib/libc_psr.so.1...done.
Reading symbols from /usr/lib/nss_files.so.1...done.
#0 0xef188244 in _libc_kill () from /usr/lib/libc.so.1
(gdb) where
#0 0xef188244 in _libc_kill () from /usr/lib/libc.so.1
#1 0x967e8 in fatal_error_signal (sig=11) at emacs.c:272
#2 <signal handler called>
#3 0x10e5a0 in map_subwindow (subwindow=14542848, x=22, y=963, dga=0xefffadd0) at
glyphs.c:4005
#4 0x15e1a8 in redisplay_output_layout (w=0xfea400, image_instance=14931892,
db=0xefffaf38,
dga=0xefffaf28, findex=35, cursor_start=0, cursor_width=0, cursor_height=0)
at redisplay-output.c:1200
#5 0x15e1d4 in redisplay_output_layout (w=0xfea400, image_instance=14931868,
db=0xefffaff0,
dga=0xefffafe0, findex=35, cursor_start=0, cursor_width=0, cursor_height=0)
at redisplay-output.c:1398
#6 0x1a53ec in x_output_display_block (w=0xfea400, dl=0xe25000, block=13025280,
start=-268455968,
end=1, start_pixpos=6, cursor_start=0, cursor_width=0, cursor_height=0) at
redisplay-x.c:488
#7 0x15fe24 in redisplay_output_display_block (w=0xfea400, dl=0xe25000, block=0, start=0,
end=1,
start_pixpos=6, cursor_start=0, cursor_width=0, cursor_height=0) at
redisplay-output.c:1088
#8 0x15d060 in output_display_line (w=0xfea400, cdla=0xff0200, ddla=0x1085160, line=0,
force_start=-1, force_end=0) at redisplay-output.c:751
#9 0x11eae8 in output_gutter (f=0x1085160, pos=TOP_GUTTER) at gutter.c:257
#10 0x11efc4 in update_frame_gutters (f=0xade200) at gutter.c:361
#11 0x155224 in redisplay_frame (f=0xade200, preemption_check=0) at redisplay.c:6362
#12 0x15bc68 in Fredisplay_frame (frame=11395584, no_preempt=2430980) at redisplay.c:8907
#13 0x9bd50 in Ffuncall (nargs=1424396, args=0xefffb45c) at eval.c:3175
#14 0x6d754 in execute_optimized_program (
program=0xde2ab5 "+\207", 'k' <repeats 12 times>,
".kk\",\r\"k.kkkkk..kk.k..k.k.kk..kk.k.k...kk\",\r\"k....k.kk.k..k.k\023\036$",
stack_depth=0, constants_data=0x4af310) at bytecode.c:747
#15 0x6d330 in funcall_compiled_function (fun=4992548, nargs=3, args=0xefffb638) at
bytecode.c:516
#16 0x9bf34 in Ffuncall (nargs=3, args=0xefffb634) at eval.c:3210
#17 0x6d754 in execute_optimized_program (
program=0xe2835d "\210\016\013Ña\tÒÓÔ\"\210Õ\r!*\207table-p, unlike
fi\023\002\204",
stack_depth=3, constants_data=0x4bd390) at bytecode.c:747
#18 0x6d330 in funcall_compiled_function (fun=4992492, nargs=4, args=0xefffb808) at
bytecode.c:516
#19 0x9bf34 in Ffuncall (nargs=4, args=0xefffb804) at eval.c:3210
#20 0x6d754 in execute_optimized_program (program=0xe31b29 "\207",
stack_depth=4,
constants_data=0x4dc110) at bytecode.c:747
#21 0x6d330 in funcall_compiled_function (fun=4992576, nargs=3, args=0xefffb9d8) at
bytecode.c:516
#22 0x9bf34 in Ffuncall (nargs=3, args=0xefffb9d4) at eval.c:3210
#23 0x6d754 in execute_optimized_program (program=0xe31baa
"\210\016\006)\207\004", stack_depth=3,
constants_data=0x4dc0d0) at bytecode.c:747
#24 0x6d330 in funcall_compiled_function (fun=4992660, nargs=3, args=0xefffbba8) at
bytecode.c:516
#25 0x9bf34 in Ffuncall (nargs=3, args=0xefffbba4) at eval.c:3210
#26 0x6d754 in execute_optimized_program (program=0xc5c180 "\210\201Z",
stack_depth=3,
constants_data=0xd1d010) at bytecode.c:747
#27 0x6d330 in funcall_compiled_function (fun=13548672, nargs=1, args=0xefffbda8) at
bytecode.c:516
#28 0x9bf34 in Ffuncall (nargs=1, args=0xefffbda4) at eval.c:3210
#29 0x6d754 in execute_optimized_program (
program=0xefffbe3f
"\025)\016\006\016\a}\210ed|\210È\r!\210É\211\211\036\n\036\013\036\f\016\r«\"\016\r@\026\n\016\rA\026\rÎ\016\nÏ\"\026\fÐ\016\f\016\021\"£\026\013ÉÒÓ\217\210ªÜ+\016\024«\025\016\024ÕH«\017Ö`×\"\210Ø\016\024ÕH!\210ª\004eb\210\016\031¬\nÚ
Ûa¬\004Ü \210ÝÞ!\210~\207", stack_depth=1,
constants_data=0x89a910) at bytecode.c:747
#30 0x70c2c in Fbyte_code (instructions=-268452304, constants=9021696, stack_depth=7)
at bytecode.c:2404
#31 0x9b630 in Feval (form=4937840) at eval.c:2975
#32 0x9fb58 in Fprogn (args=5590748) at eval.c:766
#33 0x6e6d8 in execute_rare_opcode (stack_ptr=0xefffc23c,
program_ptr=0xe04d22 "+\207tml 4.0 transition",
opcode=Bsave_window_excursion) at bytecode.c:1240
#34 0x6d528 in execute_optimized_program (program=0xe04d22 "+\207tml 4.0
transition", stack_depth=8,
constants_data=0x9f9090) at bytecode.c:657
#35 0x6d330 in funcall_compiled_function (fun=10356680, nargs=2, args=0xefffc408) at
bytecode.c:516
#36 0x9bf34 in Ffuncall (nargs=2, args=0xefffc404) at eval.c:3210
#37 0x6d754 in execute_optimized_program (program=0xefffc494 "\207\035\e0",
stack_depth=2,
constants_data=0x8c0470) at bytecode.c:747
#38 0x70c2c in Fbyte_code (instructions=-268450672, constants=9176160, stack_depth=7)
at bytecode.c:2404
#39 0x9b630 in Feval (form=9828180) at eval.c:2975
#40 0x98344 in condition_case_1 (handlers=9828252, bfun=0x9b068 <Feval>,
barg=9828180,
hfun=0x98388 <run_condition_case_handlers>, harg=3031956) at eval.c:1629
#41 0x98778 in condition_case_3 (bodyform=9828180, var=3031956, handlers=9828252) at
eval.c:1707
#42 0x6e774 in execute_rare_opcode (stack_ptr=0xefffc824, program_ptr=0xefffc8b9
"\210+Á\207\"@",
opcode=Bcondition_case) at bytecode.c:1272
#43 0x6d528 in execute_optimized_program (program=0xefffc8b9
"\210+Á\207\"@", stack_depth=3,
constants_data=0x953890) at bytecode.c:657
#44 0x70c2c in Fbyte_code (instructions=-268449616, constants=9779328, stack_depth=7)
at bytecode.c:2404
#45 0x9b630 in Feval (form=9828096) at eval.c:2975
#46 0x9fb58 in Fprogn (args=9828168) at eval.c:766
#47 0x6e6d8 in execute_rare_opcode (stack_ptr=0xefffcb84,
program_ptr=0x9ba28b "\210à\b\233áÄâãäåæ ç EFE .\a\202Ç",
opcode=Bsave_window_excursion)
at bytecode.c:1240
#48 0x6d528 in execute_optimized_program (program=0x9ba28b "\210à\b\233áÄâãäåæ ç
EFE .\a\202Ç",
stack_depth=2, constants_data=0x8efe10) at bytecode.c:657
#49 0x6d330 in funcall_compiled_function (fun=9610704, nargs=1, args=0xefffcd70) at
bytecode.c:516
#50 0x9bf34 in Ffuncall (nargs=1, args=0xefffcd6c) at eval.c:3210
#51 0x6d754 in execute_optimized_program (program=0x97d3eb "\210eb*\207",
stack_depth=1,
constants_data=0x6d28d0) at bytecode.c:747
#52 0x6d330 in funcall_compiled_function (fun=6584548, nargs=1, args=0xefffcf40) at
bytecode.c:516
#53 0x9bf34 in Ffuncall (nargs=1, args=0xefffcf3c) at eval.c:3210
#54 0x6d754 in execute_optimized_program (
program=0x97f73f
"\210ʪ+\016\006¬\006\016\013?\"\016\006¬\026Ì\f!@Ík«\016Èy\210Î\nÏ\n!\"\210ʪ\tÐ\n\016\006®\002Ñ\"*)\207",
stack_depth=1, constants_data=0x6ae590) at bytecode.c:747
#55 0x6d330 in funcall_compiled_function (fun=6584380, nargs=1, args=0xefffd110) at
bytecode.c:516
#56 0x9bf34 in Ffuncall (nargs=1, args=0xefffd10c) at eval.c:3210
#57 0x6d754 in execute_optimized_program (
program=0xefffd304
"\210\212\214\r@d}\210ö÷\016\025G\0168GS\016!\211\036!@;«\006\016!@ª\006ë\016!8@)$\210,db\210\rÄ
¡\210)÷\207@ïÿÔ\220", stack_depth=1, constants_data=0x96f610) at bytecode.c:747
#58 0x70c2c in Fbyte_code (instructions=-268447272, constants=9893376, stack_depth=37)
at bytecode.c:2404
#59 0x9b630 in Feval (form=9455276) at eval.c:2975
#60 0x9fb58 in Fprogn (args=9457612) at eval.c:766
#61 0x6e6d8 in execute_rare_opcode (stack_ptr=0xefffd84c,
program_ptr=0xaf616f "\210\016\r\003\fb.\t\207",
opcode=Bsave_window_excursion) at bytecode.c:1240
#62 0x6d528 in execute_optimized_program (program=0xaf616f
"\210\016\r\003\fb.\t\207",
stack_depth=11, constants_data=0x978010) at bytecode.c:657
#63 0x6d330 in funcall_compiled_function (fun=9901128, nargs=4, args=0xefffda18) at
bytecode.c:516
#64 0x9bf34 in Ffuncall (nargs=4, args=0xefffda14) at eval.c:3210
#65 0x6d754 in execute_optimized_program (program=0x97f949
")\207\b@Êk«\n\r¬\aË\bA@!\207Ì\bA!\207Z",
stack_depth=4, constants_data=0x94b090) at bytecode.c:747
#66 0x6d330 in funcall_compiled_function (fun=9900960, nargs=1, args=0xefffdbf0) at
bytecode.c:516
#67 0x9bf34 in Ffuncall (nargs=1, args=0xefffdbec) at eval.c:3210
#68 0x6d754 in execute_optimized_program (
program=0x38f693 "\210)ª\022\214Û
\210`d}\210ÞÍß\211#\210~\210)\016\t?\016\212\214Û \210e`}\210Þà!*.\013\207tring-match
\"=\" gnus-url-unhex-string 0 downcase assoc] 6])\n(defali\023\030ö",
stack_depth=1, constants_data=0x96f810) at bytecode.c:747
#69 0x6d330 in funcall_compiled_function (fun=9900932, nargs=0, args=0xefffddc0) at
bytecode.c:516
#70 0x9bf34 in Ffuncall (nargs=0, args=0xefffddbc) at eval.c:3210
#71 0x6d754 in execute_optimized_program (
program=0x9699eb "\210ÆÉ!*\207-async-hashtb g\023\026\232\200",
stack_depth=0,
constants_data=0x8ec510) at bytecode.c:747
#72 0x6d330 in funcall_compiled_function (fun=9900148, nargs=0, args=0xefffdf88) at
bytecode.c:516
#73 0x9bf34 in Ffuncall (nargs=0, args=0xefffdf84) at eval.c:3210
#74 0x6d754 in execute_optimized_program (program=0x8efda0
"\210eb\210\016J\t\201K", stack_depth=0,
constants_data=0x93e410) at bytecode.c:747
#75 0x6d330 in funcall_compiled_function (fun=9900120, nargs=2, args=0xefffe150) at
bytecode.c:516
#76 0x9bf34 in Ffuncall (nargs=2, args=0xefffe14c) at eval.c:3210
#77 0x6d754 in execute_optimized_program (
program=0x770123 "ÅÆ!\210\016\a«\f\016\aÈU¬\006É\016\a!\210Ê
\210\016\013«\r\016\f«\tÍ\t!\210Î\t!\210Ï\t\016\020·A!\210\207\017\217¡@",
stack_depth=2, constants_data=0x8b6290) at bytecode.c:747
#78 0x6d330 in funcall_compiled_function (fun=8883104, nargs=2, args=0xefffe320) at
bytecode.c:516
#79 0x9bf34 in Ffuncall (nargs=2, args=0xefffe31c) at eval.c:3210
#80 0x6d754 in execute_optimized_program (
program=0x391088 "\013\026\f\016\n¬\005\016\032«\022Û
\210ª\r\016\n¬\005\016\032«\004Û \210Ü)\016\f«\tÝ\013\016\036·A!\210,\207",
stack_depth=2, constants_data=0x8c9710) at bytecode.c:747
#81 0x6d330 in funcall_compiled_function (fun=8883132, nargs=3, args=0xefffe4f0) at
bytecode.c:516
#82 0x9bf34 in Ffuncall (nargs=3, args=0xefffe4ec) at eval.c:3210
#83 0x6d754 in execute_optimized_program (
program=0x94b59c "Æa«HÇ
\036\b\016\t\036\nË\016\nÌ\"\036\rÎ\216\016\r«\016Ï\016\r!\210Ð\016\r!q\210ª\006Ñ\016\n!\210\016\022ÓV«\016Ô\016\022!«\024ÕÖ×\"\210ª\r\016\022ÓW«\aØ\016\022[!\210,Ù
\210Ú \207tring", stack_depth=3, constants_data=0x8b6110) at bytecode.c:747
#84 0x6d330 in funcall_compiled_function (fun=8883412, nargs=1, args=0xefffe6bc) at
bytecode.c:516
#85 0x9bf34 in Ffuncall (nargs=1, args=0xefffe6b8) at eval.c:3210
#86 0x72fc0 in Fcall_interactively (function=8643548, record_flag=2430980, keys=2430980)
at callint.c:946
#87 0x9a9e0 in Fcommand_execute (cmd=8643548, record=2430980, keys=2430980) at
eval.c:2613
#88 0xd57c4 in execute_command_event (command_builder=0x52eac0, event=11649608) at
event-stream.c:4333
#89 0xd5e84 in Fdispatch_event (event=11649608) at event-stream.c:4644
#90 0x7a8d8 in Fcommand_loop_1 () at cmdloop.c:575
#91 0x7ab40 in command_loop_1 (dummy=2430980) at cmdloop.c:490
#92 0x98344 in condition_case_1 (handlers=2431076, bfun=0x7ab24 <command_loop_1>,
barg=2430980,
hfun=0x7aba0 <cmd_error>, harg=2430980) at eval.c:1629
#93 0x7acb0 in command_loop_2 (dummy=2430980) at cmdloop.c:252
#94 0x9f8b4 in internal_catch (tag=2513116, func=0x7ac64 <command_loop_2>,
arg=2430980, threw=0x0)
at eval.c:1304
#95 0x7a404 in initial_command_loop (load_me=2430980) at cmdloop.c:301
#96 0x94c30 in sort_args (argc=1931264, argv=0xefffef04) at emacs.c:1894
Recent keystrokes:
y misc-user
Recent messages (most recent first):
Parsing BBDB... (frobnicating...)
Parsing BBDB... (reading...)
Parsing BBDB...
Loading bbdb-com...done
Loading bbdb-com...
Loading mail-extr...done
Loading mail-extr...
Loading emacsbug...done
Loading emacsbug...
Loading gnus-topic...done
--
Steven E. Harris
Primus Knowledge Solutions, Inc.
http://www.primus.com