unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Matthias Dahl <ml_emacs-lists@binary-island.eu>
To: Eli Zaretskii <eliz@gnu.org>
Cc: emacs-devel@gnu.org
Subject: Re: wait_reading_process_ouput hangs in certain cases (w/ patches)
Date: Mon, 30 Oct 2017 10:48:05 +0100	[thread overview]
Message-ID: <d078bdeb-2e1a-8941-9cc7-e557055cee5d@binary-island.eu> (raw)
In-Reply-To: <83tvyj62qg.fsf@gnu.org>

[-- Attachment #1: Type: text/plain, Size: 3047 bytes --]

Hello Eli...

On 28/10/17 11:28, Eli Zaretskii wrote:

> It lacks the Lisp backtrace ("xbacktrace" can produce it), and the
> fact that most arguments are either optimized out or complex data
> types shown as "..." makes the backtrace much less useful.

Sorry, like I said, I was in a hurry that was all I could provide at
that time. Attached you will find a full backtrace from a proper debug
build w/o optimization -- I usually only run those when really debugging
something, otherwise I keep debug symbols around for an optimized build,
that will at least give me a starting point and an idea when something
goes wrong.

> But if the wrong call to accept-process-output have read the process
> output, it could have also processed it and delivered the results to
> the wrong application, no?

Given that fact that a filter is registered for a given process, and
thus it is this filter that gets called whenever process output is ready
and needs to be processed, a timer or filter would have to replace that
filter with its own through set-process-filter for this to happen. And
that is something I would clearly consider a bug, since no filter or
timer should do something like that.

Naturally there is also the weird case when accept-process-output was
called from a hook by some package which expects that data and needs it
but doesn't consider that a timer could get called during that time and
the package itself has a timer setup that will also interact with that
very same process, trying to read data back from some interaction with
it. That will naturally fail as well... either way, with or without my
patch. And again, I would consider this a bug.

If a package interacts with its own processes, it should be careful and
consider that timers/filters get called while accept-process-output is
called and take that into account.

> I think we need a thorough and detailed understanding of what's going
> on in this case, before we can discuss the solutions, yes.  IME,
> trying to fix a problem without a good understanding what it is that
> we are fixing tends to produce partial solutions at best, and new bugs
> at worst.

I fully agree with your opinion, I just thought I already properly
explained in my lenghty mails what was going on behind the scenes and
how my (rather simple) solution fixes it.

> So please reproduce this in an unoptimized build, and please also show
> the Lisp backtrace in this scenario.  Then let's take it from there.

Like said earlier, you will find that attached. But keep in mind, that
will not be as helpful as you might hope since you will only see where
the hangs occurs (I already stated that) but not why. At that point, the
timers have already run.

> I do.  I believe we must understand this situation very well before we
> reason about its solution.

One example is semantic. Its idle timers use semantic-throw-on-input
which calls accept-process-output without any arguments. Just as an
example.

So long,
Matthias

-- 
Dipl.-Inf. (FH) Matthias Dahl | Software Engineer | binary-island.eu


[-- Attachment #2: emacs-bt-full.txt --]
[-- Type: text/plain, Size: 91338 bytes --]

#0  0x00007ffff2d49ee3 in __pselect (nfds=<optimized out>, readfds=0x7fffffff7d30, writefds=0x7fffffff7db0, exceptfds=0x0, timeout=<optimized out>, sigmask=<optimized out>)
    at ../sysdeps/unix/sysv/linux/pselect.c:69
        resultvar = 18446744073709551102
        sc_cancel_oldtype = 0
        tval = {
          tv_sec = 4, 
          tv_nsec = 126621639
        }
        data = {
          ss = 0, 
          ss_len = 8
        }
#1  0x000000000069a5fb in really_call_select (arg=0x7fffffff7c20) at thread.c:574
        sa = 0x7fffffff7c20
        self = 0xaec100 <main_thread>
        oldset = {
          __val = {0, 750006068578745088, 5627596, 0, 140737488322384, 6683181, 140737488321312, 77506101, 0, 77501859, 0, 0, 2, 0, 4933, 608559125}
        }
#2  0x00000000005eafcc in flush_stack_call_func (func=0x69a53d <really_call_select>, arg=0x7fffffff7c20) at alloc.c:5226
        end = 0x7fffffff7bd0
        self = 0xaec100 <main_thread>
        sentry = {
          o = {
            __max_align_ll = 140737488321488, 
            __max_align_ld = -2.8728035521484346831976196739416242e-2059
          }
        }
#3  0x000000000069a6e4 in thread_select (func=0x7ffff2d49e20 <__pselect>, max_fds=21, rfds=0x7fffffff7d30, wfds=0x7fffffff7db0, efds=0x0, timeout=0x7fffffff8340, 
    sigmask=0x0) at thread.c:597
        sa = {
          func = 0x7ffff2d49e20 <__pselect>, 
          max_fds = 21, 
          rfds = 0x7fffffff7d30, 
          wfds = 0x7fffffff7db0, 
          efds = 0x0, 
          timeout = 0x7fffffff8340, 
          sigmask = 0x0, 
          result = 0
        }
#4  0x00000000006c0315 in xg_select (fds_lim=21, rfds=0x7fffffff83b0, wfds=0x7fffffff8430, efds=0x0, timeout=0x7fffffff8340, sigmask=0x0) at xgselect.c:117
        all_rfds = {
          fds_bits = {1409256, 0 <repeats 15 times>}
        }
        all_wfds = {
          fds_bits = {0 <repeats 16 times>}
        }
        tmo = {
          tv_sec = 10600560, 
          tv_nsec = 30064737696
        }
        tmop = 0x7fffffff8340
        context = 0x2b7f320
        have_wfds = true
        gfds_buf = {{
            fd = 5, 
            events = 1, 
            revents = 0
          }, {
            fd = 6, 
            events = 1, 
            revents = 0
          }, {
            fd = 7, 
            events = 1, 
            revents = 0
          }, {
            fd = 8898464, 
            events = 0, 
            revents = 0
          }, {
            fd = 32, 
            events = 0, 
            revents = 0
          }, {
            fd = -34080, 
            events = 32767, 
            revents = 0
          }, {
            fd = -34064, 
            events = 32767, 
            revents = 0
          }, {
            fd = -33992, 
            events = 32767, 
            revents = 0
          }, {
            fd = -33821, 
            events = 32767, 
            revents = 0
          }, {
            fd = 32, 
            events = 0, 
            revents = 0
          }, {
            fd = 1, 
            events = 0, 
            revents = 0
          }, {
            fd = 1, 
            events = 6, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 92813968, 
            events = 0, 
            revents = 0
          }, {
            fd = 11304160, 
            events = 0, 
            revents = 0
          }, {
            fd = -1325008128, 
            events = 36491, 
            revents = 2664
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 56714256, 
            events = 0, 
            revents = 0
          }, {
            fd = -32960, 
            events = 32767, 
            revents = 0
          }, {
            fd = 6235253, 
            events = 0, 
            revents = 0
          }, {
            fd = -33992, 
            events = 2, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 30048, 
            events = 0, 
            revents = 0
          }, {
            fd = 1, 
            events = 0, 
            revents = 0
          }, {
            fd = -33920, 
            events = 18, 
            revents = 0
          }, {
            fd = 8898376, 
            events = 0, 
            revents = 0
          }, {
            fd = 8898381, 
            events = 0, 
            revents = 0
          }, {
            fd = 11336640, 
            events = 0, 
            revents = 0
          }, {
            fd = 163501968, 
            events = 0, 
            revents = 0
          }, {
            fd = 11304160, 
            events = 0, 
            revents = 0
          }, {
            fd = -32960, 
            events = 32767, 
            revents = 0
          }, {
            fd = 5627596, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = -32848, 
            events = 32767, 
            revents = 0
          }, {
            fd = 6237915, 
            events = 0, 
            revents = 0
          }, {
            fd = -32816, 
            events = 32767, 
            revents = 0
          }, {
            fd = 6374324, 
            events = 2, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 30048, 
            events = 0, 
            revents = 0
          }, {
            fd = -32784, 
            events = 32767, 
            revents = 0
          }, {
            fd = 1030, 
            events = 0, 
            revents = 0
          }, {
            fd = 11336640, 
            events = 0, 
            revents = 0
          }, {
            fd = -32840, 
            events = 32767, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = -32704, 
            events = 32767, 
            revents = 0
          }, {
            fd = 2, 
            events = 0, 
            revents = 0
          }, {
            fd = 2, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 600, 
            events = 0, 
            revents = 0
          }, {
            fd = 600, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = -32784, 
            events = 32767, 
            revents = 0
          }, {
            fd = 6290592, 
            events = 0, 
            revents = 0
          }, {
            fd = 11306592, 
            events = 0, 
            revents = 0
          }, {
            fd = 600, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 66144099, 
            events = 0, 
            revents = 0
          }, {
            fd = -32736, 
            events = 32767, 
            revents = 0
          }, {
            fd = 5628266, 
            events = 0, 
            revents = 0
          }, {
            fd = 66144115, 
            events = 0, 
            revents = 0
          }, {
            fd = 66144099, 
            events = 0, 
            revents = 0
          }, {
            fd = -32672, 
            events = 32767, 
            revents = 0
          }, {
            fd = 6191436, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = -32544, 
            events = 32767, 
            revents = 0
          }, {
            fd = 2, 
            events = 0, 
            revents = 0
          }, {
            fd = 2, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 600, 
            events = 0, 
            revents = 0
          }, {
            fd = 600, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = -32624, 
            events = 32767, 
            revents = 0
          }, {
            fd = 6290592, 
            events = 0, 
            revents = 0
          }, {
            fd = 11306592, 
            events = 0, 
            revents = 0
          }, {
            fd = 600, 
            events = 0, 
            revents = 0
          }, {
            fd = 382374951, 
            events = 0, 
            revents = 0
          }, {
            fd = 520, 
            events = 0, 
            revents = 0
          }, {
            fd = 520, 
            events = 0, 
            revents = 0
          }, {
            fd = 382374951, 
            events = 0, 
            revents = 0
          }, {
            fd = -32496, 
            events = 32767, 
            revents = 0
          }, {
            fd = 7177688, 
            events = 0, 
            revents = 0
          }, {
            fd = 79, 
            events = 0, 
            revents = 0
          }, {
            fd = 617625049, 
            events = 0, 
            revents = 0
          }, {
            fd = 600, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 382374951, 
            events = 51751, 
            revents = 56111
          }, {
            fd = 520, 
            events = 0, 
            revents = 0
          }, {
            fd = 382374951, 
            events = 0, 
            revents = 0
          }, {
            fd = 4, 
            events = 0, 
            revents = 0
          }, {
            fd = 994678767, 
            events = 0, 
            revents = 0
          }, {
            fd = -32256, 
            events = 32767, 
            revents = 0
          }, {
            fd = 5695999, 
            events = 0, 
            revents = 0
          }, {
            fd = 66144339, 
            events = 0, 
            revents = 0
          }, {
            fd = 66144371, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 77506101, 
            events = 0, 
            revents = 0
          }, {
            fd = 77506101, 
            events = 0, 
            revents = 0
          }, {
            fd = 115654309, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 56714256, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = -1, 
            events = 65535, 
            revents = 65535
          }, {
            fd = 1509269519, 
            events = 0, 
            revents = 0
          }, {
            fd = 603329916, 
            events = 0, 
            revents = 0
          }, {
            fd = 79, 
            events = 0, 
            revents = 0
          }, {
            fd = 617625049, 
            events = 0, 
            revents = 0
          }, {
            fd = 1509269524, 
            events = 0, 
            revents = 0
          }, {
            fd = 598008683, 
            events = 0, 
            revents = 0
          }, {
            fd = -32224, 
            events = 32767, 
            revents = 0
          }, {
            fd = -220848378, 
            events = 32767, 
            revents = 0
          }, {
            fd = 4, 
            events = 0, 
            revents = 0
          }, {
            fd = -1325008128, 
            events = 36491, 
            revents = 2664
          }, {
            fd = 603337489, 
            events = 0, 
            revents = 0
          }, {
            fd = 1509369519, 
            events = 0, 
            revents = 0
          }, {
            fd = 1509369519, 
            events = 0, 
            revents = 0
          }, {
            fd = 603337489, 
            events = 0, 
            revents = 0
          }, {
            fd = -32192, 
            events = 32767, 
            revents = 0
          }, {
            fd = 7177400, 
            events = 0, 
            revents = 0
          }, {
            fd = 100000, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 1509269519, 
            events = 0, 
            revents = 0
          }, {
            fd = 603337489, 
            events = 0, 
            revents = 0
          }, {
            fd = -1, 
            events = 65535, 
            revents = 65535
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = 0, 
            events = 0, 
            revents = 0
          }, {
            fd = -1, 
            events = 65535, 
            revents = 65535
          }}
        gfds = 0x7fffffff7e30
        gfds_size = 128
        n_gfds = 3
        retval = 0
        our_fds = 0
        max_fds = 20
        context_acquired = true
        i = 3
        nfds = 0
        tmo_in_millisec = -1
        must_free = 0
        need_to_dispatch = true
#5  0x000000000066f4e4 in wait_reading_process_output (time_limit=0, nsecs=0, read_kbd=0, do_display=false, wait_for_cell=XIL(0), wait_proc=0x3616410, just_wait_proc=0)
    at process.c:5375
        process_skipped = false
        channel = 6587175
        nfds = 0
        Available = {
          fds_bits = {1409032, 0 <repeats 15 times>}
        }
        Writeok = {
          fds_bits = {0 <repeats 16 times>}
        }
        check_write = true
        check_delay = 0
        no_avail = false
        xerrno = 4
        proc = XIL(0x898879c96000c783)
        timeout = {
          tv_sec = 4, 
          tv_nsec = 994678767
        }
        end_time = {
          tv_sec = 85334981, 
          tv_nsec = 85359716
        }
        timer_delay = {
          tv_sec = 4, 
          tv_nsec = 994678767
        }
        got_output_end_time = {
          tv_sec = 1509369499, 
          tv_nsec = 807260931
        }
        wait = INFINITY
        got_some_output = -1
        retry_for_async = false
        count = 29
        now = {
          tv_sec = 0, 
          tv_nsec = -1
        }
#6  0x000000000066d6a7 in Faccept_process_output (process=XIL(0x3616415), seconds=XIL(0), millisec=XIL(0), just_this_one=XIL(0)) at process.c:4655
        secs = 0
        nsecs = 0
#7  0x0000000000613dc4 in funcall_subr (subr=0xa58bd0 <Saccept_process_output>, numargs=1, args=0x7fffffff87a8) at eval.c:2849
        internal_argbuf = {XIL(0x3616415), XIL(0), XIL(0), XIL(0), XIL(0x55e61d), XIL(0xaffff86d0), XIL(0xa58bd5), XIL(0x1)}
        internal_args = 0x7fffffff8690
#8  0x0000000000613962 in Ffuncall (nargs=2, args=0x7fffffff87a0) at eval.c:2766
        fun = XIL(0xa58bd5)
        original_fun = XIL(0xb8350)
        funcar = XIL(0xad52f0)
        numargs = 1
        val = XIL(0)
        count = 28
#9  0x000000000065f38f in exec_byte_code (bytestr=XIL(0x51851a4), vector=XIL(0x5183ea5), maxdepth=make_number(14), args_template=make_number(512), nargs=0, 
    args=0x7fffffff8e78) at bytecode.c:629
        op = 1
        type = CATCHER
        targets = {0x662cb6 <exec_byte_code+17943>, 0x662d1b <exec_byte_code+18044>, 0x662d1d <exec_byte_code+18046>, 0x662d1f <exec_byte_code+18048>, 
          0x662d21 <exec_byte_code+18050>, 0x662d21 <exec_byte_code+18050>, 0x662d9e <exec_byte_code+18175>, 0x662e2d <exec_byte_code+18318>, 
          0x65ebc2 <exec_byte_code+1315>, 0x65ebc4 <exec_byte_code+1317>, 0x65ebc6 <exec_byte_code+1319>, 0x65ebc8 <exec_byte_code+1321>, 0x65ebca <exec_byte_code+1323>, 
          0x65ebca <exec_byte_code+1323>, 0x65ebd3 <exec_byte_code+1332>, 0x65eb7f <exec_byte_code+1248>, 0x65f007 <exec_byte_code+2408>, 0x65f009 <exec_byte_code+2410>, 
          0x65f00b <exec_byte_code+2412>, 0x65f00d <exec_byte_code+2414>, 0x65f00f <exec_byte_code+2416>, 0x65f00f <exec_byte_code+2416>, 0x65f059 <exec_byte_code+2490>, 
          0x65f018 <exec_byte_code+2425>, 0x65f267 <exec_byte_code+3016>, 0x65f269 <exec_byte_code+3018>, 0x65f26b <exec_byte_code+3020>, 0x65f26d <exec_byte_code+3022>, 
          0x65f26f <exec_byte_code+3024>, 0x65f26f <exec_byte_code+3024>, 0x65f206 <exec_byte_code+2919>, 0x65f226 <exec_byte_code+2951>, 0x65f34d <exec_byte_code+3246>, 
          0x65f34f <exec_byte_code+3248>, 0x65f351 <exec_byte_code+3250>, 0x65f353 <exec_byte_code+3252>, 0x65f355 <exec_byte_code+3254>, 0x65f355 <exec_byte_code+3254>, 
          0x65f2ec <exec_byte_code+3149>, 0x65f30c <exec_byte_code+3181>, 0x65f43b <exec_byte_code+3484>, 0x65f43d <exec_byte_code+3486>, 0x65f43f <exec_byte_code+3488>, 
          0x65f441 <exec_byte_code+3490>, 0x65f443 <exec_byte_code+3492>, 0x65f443 <exec_byte_code+3492>, 0x65f3da <exec_byte_code+3387>, 0x65f3fa <exec_byte_code+3419>, 
          0x65fe84 <exec_byte_code+6117>, 0x65fd4c <exec_byte_code+5805>, 0x65fd40 <exec_byte_code+5793>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x66011e <exec_byte_code+6783>, 0x66022f <exec_byte_code+7056>, 
          0x6602ae <exec_byte_code+7183>, 0x66032e <exec_byte_code+7311>, 0x6603af <exec_byte_code+7440>, 0x65ee3e <exec_byte_code+1951>, 0x65eede <exec_byte_code+2111>, 
          0x660448 <exec_byte_code+7593>, 0x65ed96 <exec_byte_code+1783>, 0x65ef5e <exec_byte_code+2239>, 0x6604cf <exec_byte_code+7728>, 0x66054f <exec_byte_code+7856>, 
          0x6605a9 <exec_byte_code+7946>, 0x660629 <exec_byte_code+8074>, 0x660690 <exec_byte_code+8177>, 0x66079a <exec_byte_code+8443>, 0x6607f4 <exec_byte_code+8533>, 
          0x660874 <exec_byte_code+8661>, 0x660917 <exec_byte_code+8824>, 0x660971 <exec_byte_code+8914>, 0x6609cb <exec_byte_code+9004>, 0x660a4b <exec_byte_code+9132>, 
          0x660acb <exec_byte_code+9260>, 0x660b4b <exec_byte_code+9388>, 0x660bee <exec_byte_code+9551>, 0x660c55 <exec_byte_code+9654>, 0x660cbc <exec_byte_code+9757>, 
          0x660dc6 <exec_byte_code+10023>, 0x660e5b <exec_byte_code+10172>, 0x660ef0 <exec_byte_code+10321>, 0x6610da <exec_byte_code+10811>, 
          0x66115f <exec_byte_code+10944>, 0x6611e4 <exec_byte_code+11077>, 0x661269 <exec_byte_code+11210>, 0x6612ee <exec_byte_code+11343>, 
          0x661355 <exec_byte_code+11446>, 0x6613ee <exec_byte_code+11599>, 0x661455 <exec_byte_code+11702>, 0x6614bc <exec_byte_code+11805>, 
          0x661523 <exec_byte_code+11908>, 0x661671 <exec_byte_code+12242>, 0x65fb84 <exec_byte_code+5349>, 0x6616e1 <exec_byte_code+12354>, 
          0x66173b <exec_byte_code+12444>, 0x66183d <exec_byte_code+12702>, 0x6618b8 <exec_byte_code+12825>, 0x661928 <exec_byte_code+12937>, 
          0x661982 <exec_byte_code+13027>, 0x6619da <exec_byte_code+13115>, 0x661a32 <exec_byte_code+13203>, 0x661a92 <exec_byte_code+13299>, 
          0x662cb6 <exec_byte_code+17943>, 0x661afc <exec_byte_code+13405>, 0x661b54 <exec_byte_code+13493>, 0x661bac <exec_byte_code+13581>, 
          0x661c04 <exec_byte_code+13669>, 0x661c5c <exec_byte_code+13757>, 0x661cb4 <exec_byte_code+13845>, 0x65fb84 <exec_byte_code+5349>, 
          0x662cb6 <exec_byte_code+17943>, 0x661d0e <exec_byte_code+13935>, 0x661d75 <exec_byte_code+14038>, 0x661dcf <exec_byte_code+14128>, 
          0x661e29 <exec_byte_code+14218>, 0x661ea9 <exec_byte_code+14346>, 0x661f29 <exec_byte_code+14474>, 0x661f83 <exec_byte_code+14564>, 
          0x662098 <exec_byte_code+14841>, 0x662118 <exec_byte_code+14969>, 0x662198 <exec_byte_code+15097>, 0x662218 <exec_byte_code+15225>, 
          0x662270 <exec_byte_code+15313>, 0x662cb6 <exec_byte_code+17943>, 0x65fa85 <exec_byte_code+5094>, 0x65f513 <exec_byte_code+3700>, 0x65ece3 <exec_byte_code+1604>, 
          0x65f602 <exec_byte_code+3939>, 0x65f6a7 <exec_byte_code+4104>, 0x65f749 <exec_byte_code+4266>, 0x65fa27 <exec_byte_code+5000>, 0x65fa3f <exec_byte_code+5024>, 
          0x65f19e <exec_byte_code+2815>, 0x65fb2f <exec_byte_code+5264>, 0x65fbc7 <exec_byte_code+5416>, 0x65fc64 <exec_byte_code+5573>, 0x65fcb9 <exec_byte_code+5658>, 
          0x65fedc <exec_byte_code+6205>, 0x65ff6b <exec_byte_code+6348>, 0x66000e <exec_byte_code+6511>, 0x660083 <exec_byte_code+6628>, 0x65f4b6 <exec_byte_code+3607>, 
          0x6622ca <exec_byte_code+15403>, 0x66236d <exec_byte_code+15566>, 0x6623c7 <exec_byte_code+15656>, 0x662421 <exec_byte_code+15746>, 
          0x66247b <exec_byte_code+15836>, 0x6624d5 <exec_byte_code+15926>, 0x662555 <exec_byte_code+16054>, 0x6625d5 <exec_byte_code+16182>, 
          0x662655 <exec_byte_code+16310>, 0x6626d5 <exec_byte_code+16438>, 0x662840 <exec_byte_code+16801>, 0x6628c0 <exec_byte_code+16929>, 
          0x662940 <exec_byte_code+17057>, 0x66299a <exec_byte_code+17147>, 0x662a1a <exec_byte_code+17275>, 0x662a9a <exec_byte_code+17403>, 
          0x662af4 <exec_byte_code+17493>, 0x662b4e <exec_byte_code+17583>, 0x66158a <exec_byte_code+12011>, 0x6615f1 <exec_byte_code+12114>, 
          0x662bb5 <exec_byte_code+17686>, 0x662c36 <exec_byte_code+17815>, 0x662cb6 <exec_byte_code+17943>, 0x65f7eb <exec_byte_code+4428>, 0x65f811 <exec_byte_code+4466>, 
          0x65f898 <exec_byte_code+4601>, 0x65f91f <exec_byte_code+4736>, 0x65f9a3 <exec_byte_code+4868>, 0x6606f7 <exec_byte_code+8280>, 0x660d23 <exec_byte_code+9860>, 
          0x66179a <exec_byte_code+12539>, 0x662ee7 <exec_byte_code+18504>, 0x662f71 <exec_byte_code+18642>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x663028 <exec_byte_code+18825>, 0x6630d9 <exec_byte_code+19002>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x6632df <exec_byte_code+19520> <repeats 64 times>}
        const_length = 52
        bytestr_length = 568
        vectorp = 0x5183ea8
        quitcounter = 3 '\003'
        stack_items = 15
        sa_avail = 15696
        sa_count = 25
        sa_must_free = false
        stack_base = 0x7fffffff8760
        stack_lim = 0x7fffffff87d8
        top = 0x7fffffff87a0
        void_stack_lim = 0x7fffffff87d8
        bytestr_data = 0x7fffffff87d8 "\306 \210\212\307 \210`\310\003!\030ɉ\211\211\211\031\b\311=\204#"
        pc = 0x7fffffff88f6 "\210\t@ޘ\203\032\001\tA\211\021\204/\001\337\021\t:\203D\001\340\t@!\262\002\202D\001\211\341ɉF\262\002\001\313=\203`\001\313\026/\327\004!\210\002\004V\203\\\001\327\003S!\210˂%\002\001;\203\200\001\016\061\203\200\001\313\026/\327\004!\210\002\004V\203|\001\327\003S!\210˂%\002\001\204\232\001\313\026/\327\004!\210\002\004V\203\226\001\327\003S!\210˂%\002\016\062\342W\203\271\001\212\003b\210\323\001e\")\204\336\001\212\002b\210\343\001d\")\204\336\001\016\062\342V\203\370\001\212\003b\210\323\001\005\016\062Z\")\204\336\001\212\002b\210\343\001\004\016\062\\\")\203\370\001\311\026/\016\061\203\357\001"...
        count = 25
        result = XIL(0xc090)
#10 0x00000000006143b4 in funcall_lambda (fun=XIL(0x5184055), nargs=0, arg_vector=0x7fffffff8e78) at eval.c:2967
        size = 6
        val = XIL(0x55e61d)
        syms_left = make_number(512)
        next = XIL(0x5184050)
        lexenv = XIL(0x7fffffff8dd8)
        count = 25
        i = 81604349392
        optional = false
        rest = false
        previous_optional_or_rest = false
#11 0x00000000006139a6 in Ffuncall (nargs=1, args=0x7fffffff8e70) at eval.c:2768
        fun = XIL(0x5184055)
        original_fun = XIL(0x46bcd10)
        funcar = XIL(0xac8660)
        numargs = 0
        val = XIL(0xc090)
        count = 24
#12 0x000000000065f38f in exec_byte_code (bytestr=XIL(0x5184fe4), vector=XIL(0x5183c25), maxdepth=make_number(7), args_template=make_number(0), nargs=0, args=0x7fffffff9420)
    at bytecode.c:629
        op = 0
        type = CONDITION_CASE
        targets = {0x662cb6 <exec_byte_code+17943>, 0x662d1b <exec_byte_code+18044>, 0x662d1d <exec_byte_code+18046>, 0x662d1f <exec_byte_code+18048>, 
          0x662d21 <exec_byte_code+18050>, 0x662d21 <exec_byte_code+18050>, 0x662d9e <exec_byte_code+18175>, 0x662e2d <exec_byte_code+18318>, 
          0x65ebc2 <exec_byte_code+1315>, 0x65ebc4 <exec_byte_code+1317>, 0x65ebc6 <exec_byte_code+1319>, 0x65ebc8 <exec_byte_code+1321>, 0x65ebca <exec_byte_code+1323>, 
          0x65ebca <exec_byte_code+1323>, 0x65ebd3 <exec_byte_code+1332>, 0x65eb7f <exec_byte_code+1248>, 0x65f007 <exec_byte_code+2408>, 0x65f009 <exec_byte_code+2410>, 
          0x65f00b <exec_byte_code+2412>, 0x65f00d <exec_byte_code+2414>, 0x65f00f <exec_byte_code+2416>, 0x65f00f <exec_byte_code+2416>, 0x65f059 <exec_byte_code+2490>, 
          0x65f018 <exec_byte_code+2425>, 0x65f267 <exec_byte_code+3016>, 0x65f269 <exec_byte_code+3018>, 0x65f26b <exec_byte_code+3020>, 0x65f26d <exec_byte_code+3022>, 
          0x65f26f <exec_byte_code+3024>, 0x65f26f <exec_byte_code+3024>, 0x65f206 <exec_byte_code+2919>, 0x65f226 <exec_byte_code+2951>, 0x65f34d <exec_byte_code+3246>, 
          0x65f34f <exec_byte_code+3248>, 0x65f351 <exec_byte_code+3250>, 0x65f353 <exec_byte_code+3252>, 0x65f355 <exec_byte_code+3254>, 0x65f355 <exec_byte_code+3254>, 
          0x65f2ec <exec_byte_code+3149>, 0x65f30c <exec_byte_code+3181>, 0x65f43b <exec_byte_code+3484>, 0x65f43d <exec_byte_code+3486>, 0x65f43f <exec_byte_code+3488>, 
          0x65f441 <exec_byte_code+3490>, 0x65f443 <exec_byte_code+3492>, 0x65f443 <exec_byte_code+3492>, 0x65f3da <exec_byte_code+3387>, 0x65f3fa <exec_byte_code+3419>, 
          0x65fe84 <exec_byte_code+6117>, 0x65fd4c <exec_byte_code+5805>, 0x65fd40 <exec_byte_code+5793>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x66011e <exec_byte_code+6783>, 0x66022f <exec_byte_code+7056>, 
          0x6602ae <exec_byte_code+7183>, 0x66032e <exec_byte_code+7311>, 0x6603af <exec_byte_code+7440>, 0x65ee3e <exec_byte_code+1951>, 0x65eede <exec_byte_code+2111>, 
          0x660448 <exec_byte_code+7593>, 0x65ed96 <exec_byte_code+1783>, 0x65ef5e <exec_byte_code+2239>, 0x6604cf <exec_byte_code+7728>, 0x66054f <exec_byte_code+7856>, 
          0x6605a9 <exec_byte_code+7946>, 0x660629 <exec_byte_code+8074>, 0x660690 <exec_byte_code+8177>, 0x66079a <exec_byte_code+8443>, 0x6607f4 <exec_byte_code+8533>, 
          0x660874 <exec_byte_code+8661>, 0x660917 <exec_byte_code+8824>, 0x660971 <exec_byte_code+8914>, 0x6609cb <exec_byte_code+9004>, 0x660a4b <exec_byte_code+9132>, 
          0x660acb <exec_byte_code+9260>, 0x660b4b <exec_byte_code+9388>, 0x660bee <exec_byte_code+9551>, 0x660c55 <exec_byte_code+9654>, 0x660cbc <exec_byte_code+9757>, 
          0x660dc6 <exec_byte_code+10023>, 0x660e5b <exec_byte_code+10172>, 0x660ef0 <exec_byte_code+10321>, 0x6610da <exec_byte_code+10811>, 
          0x66115f <exec_byte_code+10944>, 0x6611e4 <exec_byte_code+11077>, 0x661269 <exec_byte_code+11210>, 0x6612ee <exec_byte_code+11343>, 
          0x661355 <exec_byte_code+11446>, 0x6613ee <exec_byte_code+11599>, 0x661455 <exec_byte_code+11702>, 0x6614bc <exec_byte_code+11805>, 
          0x661523 <exec_byte_code+11908>, 0x661671 <exec_byte_code+12242>, 0x65fb84 <exec_byte_code+5349>, 0x6616e1 <exec_byte_code+12354>, 
          0x66173b <exec_byte_code+12444>, 0x66183d <exec_byte_code+12702>, 0x6618b8 <exec_byte_code+12825>, 0x661928 <exec_byte_code+12937>, 
          0x661982 <exec_byte_code+13027>, 0x6619da <exec_byte_code+13115>, 0x661a32 <exec_byte_code+13203>, 0x661a92 <exec_byte_code+13299>, 
          0x662cb6 <exec_byte_code+17943>, 0x661afc <exec_byte_code+13405>, 0x661b54 <exec_byte_code+13493>, 0x661bac <exec_byte_code+13581>, 
          0x661c04 <exec_byte_code+13669>, 0x661c5c <exec_byte_code+13757>, 0x661cb4 <exec_byte_code+13845>, 0x65fb84 <exec_byte_code+5349>, 
          0x662cb6 <exec_byte_code+17943>, 0x661d0e <exec_byte_code+13935>, 0x661d75 <exec_byte_code+14038>, 0x661dcf <exec_byte_code+14128>, 
          0x661e29 <exec_byte_code+14218>, 0x661ea9 <exec_byte_code+14346>, 0x661f29 <exec_byte_code+14474>, 0x661f83 <exec_byte_code+14564>, 
          0x662098 <exec_byte_code+14841>, 0x662118 <exec_byte_code+14969>, 0x662198 <exec_byte_code+15097>, 0x662218 <exec_byte_code+15225>, 
          0x662270 <exec_byte_code+15313>, 0x662cb6 <exec_byte_code+17943>, 0x65fa85 <exec_byte_code+5094>, 0x65f513 <exec_byte_code+3700>, 0x65ece3 <exec_byte_code+1604>, 
          0x65f602 <exec_byte_code+3939>, 0x65f6a7 <exec_byte_code+4104>, 0x65f749 <exec_byte_code+4266>, 0x65fa27 <exec_byte_code+5000>, 0x65fa3f <exec_byte_code+5024>, 
          0x65f19e <exec_byte_code+2815>, 0x65fb2f <exec_byte_code+5264>, 0x65fbc7 <exec_byte_code+5416>, 0x65fc64 <exec_byte_code+5573>, 0x65fcb9 <exec_byte_code+5658>, 
          0x65fedc <exec_byte_code+6205>, 0x65ff6b <exec_byte_code+6348>, 0x66000e <exec_byte_code+6511>, 0x660083 <exec_byte_code+6628>, 0x65f4b6 <exec_byte_code+3607>, 
          0x6622ca <exec_byte_code+15403>, 0x66236d <exec_byte_code+15566>, 0x6623c7 <exec_byte_code+15656>, 0x662421 <exec_byte_code+15746>, 
          0x66247b <exec_byte_code+15836>, 0x6624d5 <exec_byte_code+15926>, 0x662555 <exec_byte_code+16054>, 0x6625d5 <exec_byte_code+16182>, 
          0x662655 <exec_byte_code+16310>, 0x6626d5 <exec_byte_code+16438>, 0x662840 <exec_byte_code+16801>, 0x6628c0 <exec_byte_code+16929>, 
          0x662940 <exec_byte_code+17057>, 0x66299a <exec_byte_code+17147>, 0x662a1a <exec_byte_code+17275>, 0x662a9a <exec_byte_code+17403>, 
          0x662af4 <exec_byte_code+17493>, 0x662b4e <exec_byte_code+17583>, 0x66158a <exec_byte_code+12011>, 0x6615f1 <exec_byte_code+12114>, 
          0x662bb5 <exec_byte_code+17686>, 0x662c36 <exec_byte_code+17815>, 0x662cb6 <exec_byte_code+17943>, 0x65f7eb <exec_byte_code+4428>, 0x65f811 <exec_byte_code+4466>, 
          0x65f898 <exec_byte_code+4601>, 0x65f91f <exec_byte_code+4736>, 0x65f9a3 <exec_byte_code+4868>, 0x6606f7 <exec_byte_code+8280>, 0x660d23 <exec_byte_code+9860>, 
          0x66179a <exec_byte_code+12539>, 0x662ee7 <exec_byte_code+18504>, 0x662f71 <exec_byte_code+18642>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x663028 <exec_byte_code+18825>, 0x6630d9 <exec_byte_code+19002>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x6632df <exec_byte_code+19520> <repeats 64 times>}
        const_length = 25
        bytestr_length = 126
        vectorp = 0x5183c28
        quitcounter = 1 '\001'
        stack_items = 8
        sa_avail = 16194
        sa_count = 22
        sa_must_free = false
        stack_base = 0x7fffffff8e60
        stack_lim = 0x7fffffff8ea0
        top = 0x7fffffff8e70
        void_stack_lim = 0x7fffffff8ea0
        bytestr_data = 0x7fffffff8ea0 "\b\205}"
        pc = 0x7fffffff8ec1 "\210p\025`\026\023\202@"
        count = 22
        result = XIL(0x807f1f1)
#13 0x00000000006143b4 in funcall_lambda (fun=XIL(0x5183cf5), nargs=0, arg_vector=0x7fffffff9420) at eval.c:2967
        size = 6
        val = XIL(0x55e61d)
        syms_left = make_number(0)
        next = XIL(0x5183cf0)
        lexenv = XIL(0x7fffffff92e8)
        count = 22
        i = 81604350688
        optional = false
        rest = false
        previous_optional_or_rest = false
#14 0x00000000006139a6 in Ffuncall (nargs=1, args=0x7fffffff9418) at eval.c:2768
        fun = XIL(0x5183cf5)
        original_fun = XIL(0x46b7c40)
        funcar = XIL(0xac8660)
        numargs = 0
        val = XIL(0x807f1f1)
        count = 21
#15 0x0000000000612cab in funcall_nil (nargs=1, args=0x7fffffff9418) at eval.c:2397
No locals.
#16 0x00000000006130c0 in run_hook_with_args (nargs=1, args=0x7fffffff9418, funcall=0x612c88 <funcall_nil>) at eval.c:2574
        global_vals = XIL(0)
        sym = XIL(0xa410)
        val = XIL(0x63b6a73)
        ret = XIL(0)
#17 0x0000000000612d31 in Frun_hook_with_args (nargs=1, args=0x7fffffff9418) at eval.c:2439
No locals.
#18 0x0000000000613122 in run_hook (hook=XIL(0x46b7c40)) at eval.c:2587
No locals.
#19 0x0000000000612cec in Frun_hooks (nargs=1, args=0x7fffffff95b8) at eval.c:2421
        i = 0
#20 0x0000000000613c68 in funcall_subr (subr=0xa55f58 <Srun_hooks>, numargs=1, args=0x7fffffff95b8) at eval.c:2821
No locals.
#21 0x0000000000613962 in Ffuncall (nargs=2, args=0x7fffffff95b0) at eval.c:2766
        fun = XIL(0xa55f5d)
        original_fun = XIL(0xae440)
        funcar = XIL(0x7fffffff9550)
        numargs = 1
        val = XIL(0)
        count = 20
#22 0x000000000065f38f in exec_byte_code (bytestr=XIL(0x8fdf804), vector=XIL(0x7f7b9a5), maxdepth=make_number(13), args_template=make_number(770), nargs=3, 
    args=0x7fffffff9ae0) at bytecode.c:629
        op = 1
        type = (CONDITION_CASE | CATCHER_ALL | unknown: 32764)
        targets = {0x662cb6 <exec_byte_code+17943>, 0x662d1b <exec_byte_code+18044>, 0x662d1d <exec_byte_code+18046>, 0x662d1f <exec_byte_code+18048>, 
          0x662d21 <exec_byte_code+18050>, 0x662d21 <exec_byte_code+18050>, 0x662d9e <exec_byte_code+18175>, 0x662e2d <exec_byte_code+18318>, 
          0x65ebc2 <exec_byte_code+1315>, 0x65ebc4 <exec_byte_code+1317>, 0x65ebc6 <exec_byte_code+1319>, 0x65ebc8 <exec_byte_code+1321>, 0x65ebca <exec_byte_code+1323>, 
          0x65ebca <exec_byte_code+1323>, 0x65ebd3 <exec_byte_code+1332>, 0x65eb7f <exec_byte_code+1248>, 0x65f007 <exec_byte_code+2408>, 0x65f009 <exec_byte_code+2410>, 
          0x65f00b <exec_byte_code+2412>, 0x65f00d <exec_byte_code+2414>, 0x65f00f <exec_byte_code+2416>, 0x65f00f <exec_byte_code+2416>, 0x65f059 <exec_byte_code+2490>, 
          0x65f018 <exec_byte_code+2425>, 0x65f267 <exec_byte_code+3016>, 0x65f269 <exec_byte_code+3018>, 0x65f26b <exec_byte_code+3020>, 0x65f26d <exec_byte_code+3022>, 
          0x65f26f <exec_byte_code+3024>, 0x65f26f <exec_byte_code+3024>, 0x65f206 <exec_byte_code+2919>, 0x65f226 <exec_byte_code+2951>, 0x65f34d <exec_byte_code+3246>, 
          0x65f34f <exec_byte_code+3248>, 0x65f351 <exec_byte_code+3250>, 0x65f353 <exec_byte_code+3252>, 0x65f355 <exec_byte_code+3254>, 0x65f355 <exec_byte_code+3254>, 
          0x65f2ec <exec_byte_code+3149>, 0x65f30c <exec_byte_code+3181>, 0x65f43b <exec_byte_code+3484>, 0x65f43d <exec_byte_code+3486>, 0x65f43f <exec_byte_code+3488>, 
          0x65f441 <exec_byte_code+3490>, 0x65f443 <exec_byte_code+3492>, 0x65f443 <exec_byte_code+3492>, 0x65f3da <exec_byte_code+3387>, 0x65f3fa <exec_byte_code+3419>, 
          0x65fe84 <exec_byte_code+6117>, 0x65fd4c <exec_byte_code+5805>, 0x65fd40 <exec_byte_code+5793>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x66011e <exec_byte_code+6783>, 0x66022f <exec_byte_code+7056>, 
          0x6602ae <exec_byte_code+7183>, 0x66032e <exec_byte_code+7311>, 0x6603af <exec_byte_code+7440>, 0x65ee3e <exec_byte_code+1951>, 0x65eede <exec_byte_code+2111>, 
          0x660448 <exec_byte_code+7593>, 0x65ed96 <exec_byte_code+1783>, 0x65ef5e <exec_byte_code+2239>, 0x6604cf <exec_byte_code+7728>, 0x66054f <exec_byte_code+7856>, 
          0x6605a9 <exec_byte_code+7946>, 0x660629 <exec_byte_code+8074>, 0x660690 <exec_byte_code+8177>, 0x66079a <exec_byte_code+8443>, 0x6607f4 <exec_byte_code+8533>, 
          0x660874 <exec_byte_code+8661>, 0x660917 <exec_byte_code+8824>, 0x660971 <exec_byte_code+8914>, 0x6609cb <exec_byte_code+9004>, 0x660a4b <exec_byte_code+9132>, 
          0x660acb <exec_byte_code+9260>, 0x660b4b <exec_byte_code+9388>, 0x660bee <exec_byte_code+9551>, 0x660c55 <exec_byte_code+9654>, 0x660cbc <exec_byte_code+9757>, 
          0x660dc6 <exec_byte_code+10023>, 0x660e5b <exec_byte_code+10172>, 0x660ef0 <exec_byte_code+10321>, 0x6610da <exec_byte_code+10811>, 
          0x66115f <exec_byte_code+10944>, 0x6611e4 <exec_byte_code+11077>, 0x661269 <exec_byte_code+11210>, 0x6612ee <exec_byte_code+11343>, 
          0x661355 <exec_byte_code+11446>, 0x6613ee <exec_byte_code+11599>, 0x661455 <exec_byte_code+11702>, 0x6614bc <exec_byte_code+11805>, 
          0x661523 <exec_byte_code+11908>, 0x661671 <exec_byte_code+12242>, 0x65fb84 <exec_byte_code+5349>, 0x6616e1 <exec_byte_code+12354>, 
          0x66173b <exec_byte_code+12444>, 0x66183d <exec_byte_code+12702>, 0x6618b8 <exec_byte_code+12825>, 0x661928 <exec_byte_code+12937>, 
          0x661982 <exec_byte_code+13027>, 0x6619da <exec_byte_code+13115>, 0x661a32 <exec_byte_code+13203>, 0x661a92 <exec_byte_code+13299>, 
          0x662cb6 <exec_byte_code+17943>, 0x661afc <exec_byte_code+13405>, 0x661b54 <exec_byte_code+13493>, 0x661bac <exec_byte_code+13581>, 
          0x661c04 <exec_byte_code+13669>, 0x661c5c <exec_byte_code+13757>, 0x661cb4 <exec_byte_code+13845>, 0x65fb84 <exec_byte_code+5349>, 
          0x662cb6 <exec_byte_code+17943>, 0x661d0e <exec_byte_code+13935>, 0x661d75 <exec_byte_code+14038>, 0x661dcf <exec_byte_code+14128>, 
          0x661e29 <exec_byte_code+14218>, 0x661ea9 <exec_byte_code+14346>, 0x661f29 <exec_byte_code+14474>, 0x661f83 <exec_byte_code+14564>, 
          0x662098 <exec_byte_code+14841>, 0x662118 <exec_byte_code+14969>, 0x662198 <exec_byte_code+15097>, 0x662218 <exec_byte_code+15225>, 
          0x662270 <exec_byte_code+15313>, 0x662cb6 <exec_byte_code+17943>, 0x65fa85 <exec_byte_code+5094>, 0x65f513 <exec_byte_code+3700>, 0x65ece3 <exec_byte_code+1604>, 
          0x65f602 <exec_byte_code+3939>, 0x65f6a7 <exec_byte_code+4104>, 0x65f749 <exec_byte_code+4266>, 0x65fa27 <exec_byte_code+5000>, 0x65fa3f <exec_byte_code+5024>, 
          0x65f19e <exec_byte_code+2815>, 0x65fb2f <exec_byte_code+5264>, 0x65fbc7 <exec_byte_code+5416>, 0x65fc64 <exec_byte_code+5573>, 0x65fcb9 <exec_byte_code+5658>, 
          0x65fedc <exec_byte_code+6205>, 0x65ff6b <exec_byte_code+6348>, 0x66000e <exec_byte_code+6511>, 0x660083 <exec_byte_code+6628>, 0x65f4b6 <exec_byte_code+3607>, 
          0x6622ca <exec_byte_code+15403>, 0x66236d <exec_byte_code+15566>, 0x6623c7 <exec_byte_code+15656>, 0x662421 <exec_byte_code+15746>, 
          0x66247b <exec_byte_code+15836>, 0x6624d5 <exec_byte_code+15926>, 0x662555 <exec_byte_code+16054>, 0x6625d5 <exec_byte_code+16182>, 
          0x662655 <exec_byte_code+16310>, 0x6626d5 <exec_byte_code+16438>, 0x662840 <exec_byte_code+16801>, 0x6628c0 <exec_byte_code+16929>, 
          0x662940 <exec_byte_code+17057>, 0x66299a <exec_byte_code+17147>, 0x662a1a <exec_byte_code+17275>, 0x662a9a <exec_byte_code+17403>, 
          0x662af4 <exec_byte_code+17493>, 0x662b4e <exec_byte_code+17583>, 0x66158a <exec_byte_code+12011>, 0x6615f1 <exec_byte_code+12114>, 
          0x662bb5 <exec_byte_code+17686>, 0x662c36 <exec_byte_code+17815>, 0x662cb6 <exec_byte_code+17943>, 0x65f7eb <exec_byte_code+4428>, 0x65f811 <exec_byte_code+4466>, 
          0x65f898 <exec_byte_code+4601>, 0x65f91f <exec_byte_code+4736>, 0x65f9a3 <exec_byte_code+4868>, 0x6606f7 <exec_byte_code+8280>, 0x660d23 <exec_byte_code+9860>, 
          0x66179a <exec_byte_code+12539>, 0x662ee7 <exec_byte_code+18504>, 0x662f71 <exec_byte_code+18642>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x663028 <exec_byte_code+18825>, 0x6630d9 <exec_byte_code+19002>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x6632df <exec_byte_code+19520> <repeats 64 times>}
        const_length = 29
        bytestr_length = 153
        vectorp = 0x7f7b9a8
        quitcounter = 1 '\001'
        stack_items = 14
        sa_avail = 16119
        sa_count = 17
        sa_must_free = false
        stack_base = 0x7fffffff9560
        stack_lim = 0x7fffffff95d0
        top = 0x7fffffff95b0
        void_stack_lim = 0x7fffffff95d0
        bytestr_data = 0x7fffffff95d0 "\305\306\001\030r\004\211\203\205"
        pc = 0x7fffffff9636 "\210)\266\002\004\204y"
        count = 17
        result = XIL(0)
#23 0x00000000006143b4 in funcall_lambda (fun=XIL(0x7f7ba95), nargs=3, arg_vector=0x7fffffff9ac8) at eval.c:2967
        size = 5
        val = XIL(0x55e61d)
        syms_left = make_number(770)
        next = XIL(0x7f7ba90)
        lexenv = XIL(0x7fffffff9a38)
        count = 17
        i = 81604352560
        optional = false
        rest = false
        previous_optional_or_rest = false
#24 0x00000000006139a6 in Ffuncall (nargs=4, args=0x7fffffff9ac0) at eval.c:2768
        fun = XIL(0x7f7ba95)
        original_fun = XIL(0x7f7ba95)
        funcar = XIL(0xac8660)
        numargs = 3
        val = XIL(0)
        count = 16
#25 0x0000000000612c3b in Fapply (nargs=2, args=0x7fffffff9cb8) at eval.c:2386
        i = 4
        numargs = 3
        funcall_nargs = 4
        funcall_args = 0x7fffffff9ac0
        spread_arg = XIL(0)
        fun = XIL(0x7f7ba95)
        retval = XIL(0x30)
        sa_avail = 16352
        sa_count = 16
        sa_must_free = false
#26 0x0000000000613c68 in funcall_subr (subr=0xa55f28 <Sapply>, numargs=2, args=0x7fffffff9cb8) at eval.c:2821
No locals.
#27 0x0000000000613962 in Ffuncall (nargs=3, args=0x7fffffff9cb0) at eval.c:2766
        fun = XIL(0xa55f2d)
        original_fun = XIL(0x28e0)
        funcar = XIL(0x7fffffff9c80)
        numargs = 2
        val = XIL(0x5e7d69)
        count = 15
#28 0x000000000065f38f in exec_byte_code (bytestr=XIL(0x1278244), vector=XIL(0x7064f95), maxdepth=make_number(5), args_template=make_number(128), nargs=3, 
    args=0x7fffffffa168) at bytecode.c:629
        op = 2
        type = CATCHER
        targets = {0x662cb6 <exec_byte_code+17943>, 0x662d1b <exec_byte_code+18044>, 0x662d1d <exec_byte_code+18046>, 0x662d1f <exec_byte_code+18048>, 
          0x662d21 <exec_byte_code+18050>, 0x662d21 <exec_byte_code+18050>, 0x662d9e <exec_byte_code+18175>, 0x662e2d <exec_byte_code+18318>, 
          0x65ebc2 <exec_byte_code+1315>, 0x65ebc4 <exec_byte_code+1317>, 0x65ebc6 <exec_byte_code+1319>, 0x65ebc8 <exec_byte_code+1321>, 0x65ebca <exec_byte_code+1323>, 
          0x65ebca <exec_byte_code+1323>, 0x65ebd3 <exec_byte_code+1332>, 0x65eb7f <exec_byte_code+1248>, 0x65f007 <exec_byte_code+2408>, 0x65f009 <exec_byte_code+2410>, 
          0x65f00b <exec_byte_code+2412>, 0x65f00d <exec_byte_code+2414>, 0x65f00f <exec_byte_code+2416>, 0x65f00f <exec_byte_code+2416>, 0x65f059 <exec_byte_code+2490>, 
          0x65f018 <exec_byte_code+2425>, 0x65f267 <exec_byte_code+3016>, 0x65f269 <exec_byte_code+3018>, 0x65f26b <exec_byte_code+3020>, 0x65f26d <exec_byte_code+3022>, 
          0x65f26f <exec_byte_code+3024>, 0x65f26f <exec_byte_code+3024>, 0x65f206 <exec_byte_code+2919>, 0x65f226 <exec_byte_code+2951>, 0x65f34d <exec_byte_code+3246>, 
          0x65f34f <exec_byte_code+3248>, 0x65f351 <exec_byte_code+3250>, 0x65f353 <exec_byte_code+3252>, 0x65f355 <exec_byte_code+3254>, 0x65f355 <exec_byte_code+3254>, 
          0x65f2ec <exec_byte_code+3149>, 0x65f30c <exec_byte_code+3181>, 0x65f43b <exec_byte_code+3484>, 0x65f43d <exec_byte_code+3486>, 0x65f43f <exec_byte_code+3488>, 
          0x65f441 <exec_byte_code+3490>, 0x65f443 <exec_byte_code+3492>, 0x65f443 <exec_byte_code+3492>, 0x65f3da <exec_byte_code+3387>, 0x65f3fa <exec_byte_code+3419>, 
          0x65fe84 <exec_byte_code+6117>, 0x65fd4c <exec_byte_code+5805>, 0x65fd40 <exec_byte_code+5793>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x66011e <exec_byte_code+6783>, 0x66022f <exec_byte_code+7056>, 
          0x6602ae <exec_byte_code+7183>, 0x66032e <exec_byte_code+7311>, 0x6603af <exec_byte_code+7440>, 0x65ee3e <exec_byte_code+1951>, 0x65eede <exec_byte_code+2111>, 
          0x660448 <exec_byte_code+7593>, 0x65ed96 <exec_byte_code+1783>, 0x65ef5e <exec_byte_code+2239>, 0x6604cf <exec_byte_code+7728>, 0x66054f <exec_byte_code+7856>, 
          0x6605a9 <exec_byte_code+7946>, 0x660629 <exec_byte_code+8074>, 0x660690 <exec_byte_code+8177>, 0x66079a <exec_byte_code+8443>, 0x6607f4 <exec_byte_code+8533>, 
          0x660874 <exec_byte_code+8661>, 0x660917 <exec_byte_code+8824>, 0x660971 <exec_byte_code+8914>, 0x6609cb <exec_byte_code+9004>, 0x660a4b <exec_byte_code+9132>, 
          0x660acb <exec_byte_code+9260>, 0x660b4b <exec_byte_code+9388>, 0x660bee <exec_byte_code+9551>, 0x660c55 <exec_byte_code+9654>, 0x660cbc <exec_byte_code+9757>, 
          0x660dc6 <exec_byte_code+10023>, 0x660e5b <exec_byte_code+10172>, 0x660ef0 <exec_byte_code+10321>, 0x6610da <exec_byte_code+10811>, 
          0x66115f <exec_byte_code+10944>, 0x6611e4 <exec_byte_code+11077>, 0x661269 <exec_byte_code+11210>, 0x6612ee <exec_byte_code+11343>, 
          0x661355 <exec_byte_code+11446>, 0x6613ee <exec_byte_code+11599>, 0x661455 <exec_byte_code+11702>, 0x6614bc <exec_byte_code+11805>, 
          0x661523 <exec_byte_code+11908>, 0x661671 <exec_byte_code+12242>, 0x65fb84 <exec_byte_code+5349>, 0x6616e1 <exec_byte_code+12354>, 
          0x66173b <exec_byte_code+12444>, 0x66183d <exec_byte_code+12702>, 0x6618b8 <exec_byte_code+12825>, 0x661928 <exec_byte_code+12937>, 
          0x661982 <exec_byte_code+13027>, 0x6619da <exec_byte_code+13115>, 0x661a32 <exec_byte_code+13203>, 0x661a92 <exec_byte_code+13299>, 
          0x662cb6 <exec_byte_code+17943>, 0x661afc <exec_byte_code+13405>, 0x661b54 <exec_byte_code+13493>, 0x661bac <exec_byte_code+13581>, 
          0x661c04 <exec_byte_code+13669>, 0x661c5c <exec_byte_code+13757>, 0x661cb4 <exec_byte_code+13845>, 0x65fb84 <exec_byte_code+5349>, 
          0x662cb6 <exec_byte_code+17943>, 0x661d0e <exec_byte_code+13935>, 0x661d75 <exec_byte_code+14038>, 0x661dcf <exec_byte_code+14128>, 
          0x661e29 <exec_byte_code+14218>, 0x661ea9 <exec_byte_code+14346>, 0x661f29 <exec_byte_code+14474>, 0x661f83 <exec_byte_code+14564>, 
          0x662098 <exec_byte_code+14841>, 0x662118 <exec_byte_code+14969>, 0x662198 <exec_byte_code+15097>, 0x662218 <exec_byte_code+15225>, 
          0x662270 <exec_byte_code+15313>, 0x662cb6 <exec_byte_code+17943>, 0x65fa85 <exec_byte_code+5094>, 0x65f513 <exec_byte_code+3700>, 0x65ece3 <exec_byte_code+1604>, 
          0x65f602 <exec_byte_code+3939>, 0x65f6a7 <exec_byte_code+4104>, 0x65f749 <exec_byte_code+4266>, 0x65fa27 <exec_byte_code+5000>, 0x65fa3f <exec_byte_code+5024>, 
          0x65f19e <exec_byte_code+2815>, 0x65fb2f <exec_byte_code+5264>, 0x65fbc7 <exec_byte_code+5416>, 0x65fc64 <exec_byte_code+5573>, 0x65fcb9 <exec_byte_code+5658>, 
          0x65fedc <exec_byte_code+6205>, 0x65ff6b <exec_byte_code+6348>, 0x66000e <exec_byte_code+6511>, 0x660083 <exec_byte_code+6628>, 0x65f4b6 <exec_byte_code+3607>, 
          0x6622ca <exec_byte_code+15403>, 0x66236d <exec_byte_code+15566>, 0x6623c7 <exec_byte_code+15656>, 0x662421 <exec_byte_code+15746>, 
          0x66247b <exec_byte_code+15836>, 0x6624d5 <exec_byte_code+15926>, 0x662555 <exec_byte_code+16054>, 0x6625d5 <exec_byte_code+16182>, 
          0x662655 <exec_byte_code+16310>, 0x6626d5 <exec_byte_code+16438>, 0x662840 <exec_byte_code+16801>, 0x6628c0 <exec_byte_code+16929>, 
          0x662940 <exec_byte_code+17057>, 0x66299a <exec_byte_code+17147>, 0x662a1a <exec_byte_code+17275>, 0x662a9a <exec_byte_code+17403>, 
          0x662af4 <exec_byte_code+17493>, 0x662b4e <exec_byte_code+17583>, 0x66158a <exec_byte_code+12011>, 0x6615f1 <exec_byte_code+12114>, 
          0x662bb5 <exec_byte_code+17686>, 0x662c36 <exec_byte_code+17815>, 0x662cb6 <exec_byte_code+17943>, 0x65f7eb <exec_byte_code+4428>, 0x65f811 <exec_byte_code+4466>, 
          0x65f898 <exec_byte_code+4601>, 0x65f91f <exec_byte_code+4736>, 0x65f9a3 <exec_byte_code+4868>, 0x6606f7 <exec_byte_code+8280>, 0x660d23 <exec_byte_code+9860>, 
          0x66179a <exec_byte_code+12539>, 0x662ee7 <exec_byte_code+18504>, 0x662f71 <exec_byte_code+18642>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x663028 <exec_byte_code+18825>, 0x6630d9 <exec_byte_code+19002>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x6632df <exec_byte_code+19520> <repeats 64 times>}
        const_length = 4
        bytestr_length = 10
        vectorp = 0x7064f98
        quitcounter = 1 '\001'
        stack_items = 6
        sa_avail = 16326
        sa_count = 15
        sa_must_free = false
        stack_base = 0x7fffffff9ca0
        stack_lim = 0x7fffffff9cd0
        top = 0x7fffffff9cb0
        void_stack_lim = 0x7fffffff9cd0
        bytestr_data = 0x7fffffff9cd0 "\300\302\002\"\300\301\003\"\210\207\006\a"
        pc = 0x7fffffff9cd4 "\300\301\003\"\210\207\006\a"
        count = 15
        result = XIL(0x7400000074)
#29 0x00000000006143b4 in funcall_lambda (fun=XIL(0x7064fc5), nargs=3, arg_vector=0x7fffffffa168) at eval.c:2967
        size = 5
        val = XIL(0x55e61d)
        syms_left = make_number(128)
        next = XIL(0x7064fc0)
        lexenv = XIL(0x7fffffffa098)
        count = 15
        i = 81604354192
        optional = 127
        rest = false
        previous_optional_or_rest = false
#30 0x00000000006139a6 in Ffuncall (nargs=4, args=0x7fffffffa160) at eval.c:2768
        fun = XIL(0x7064fc5)
        original_fun = XIL(0x8516d80)
        funcar = XIL(0x7fffffffa110)
        numargs = 3
        val = XIL(0x610471)
        count = 14
#31 0x000000000065f38f in exec_byte_code (bytestr=XIL(0x8fdf1f4), vector=XIL(0x7f7b765), maxdepth=make_number(12), args_template=make_number(1799), nargs=7, 
    args=0x7fffffffa708) at bytecode.c:629
        op = 3
        type = CONDITION_CASE
        targets = {0x662cb6 <exec_byte_code+17943>, 0x662d1b <exec_byte_code+18044>, 0x662d1d <exec_byte_code+18046>, 0x662d1f <exec_byte_code+18048>, 
          0x662d21 <exec_byte_code+18050>, 0x662d21 <exec_byte_code+18050>, 0x662d9e <exec_byte_code+18175>, 0x662e2d <exec_byte_code+18318>, 
          0x65ebc2 <exec_byte_code+1315>, 0x65ebc4 <exec_byte_code+1317>, 0x65ebc6 <exec_byte_code+1319>, 0x65ebc8 <exec_byte_code+1321>, 0x65ebca <exec_byte_code+1323>, 
          0x65ebca <exec_byte_code+1323>, 0x65ebd3 <exec_byte_code+1332>, 0x65eb7f <exec_byte_code+1248>, 0x65f007 <exec_byte_code+2408>, 0x65f009 <exec_byte_code+2410>, 
          0x65f00b <exec_byte_code+2412>, 0x65f00d <exec_byte_code+2414>, 0x65f00f <exec_byte_code+2416>, 0x65f00f <exec_byte_code+2416>, 0x65f059 <exec_byte_code+2490>, 
          0x65f018 <exec_byte_code+2425>, 0x65f267 <exec_byte_code+3016>, 0x65f269 <exec_byte_code+3018>, 0x65f26b <exec_byte_code+3020>, 0x65f26d <exec_byte_code+3022>, 
          0x65f26f <exec_byte_code+3024>, 0x65f26f <exec_byte_code+3024>, 0x65f206 <exec_byte_code+2919>, 0x65f226 <exec_byte_code+2951>, 0x65f34d <exec_byte_code+3246>, 
          0x65f34f <exec_byte_code+3248>, 0x65f351 <exec_byte_code+3250>, 0x65f353 <exec_byte_code+3252>, 0x65f355 <exec_byte_code+3254>, 0x65f355 <exec_byte_code+3254>, 
          0x65f2ec <exec_byte_code+3149>, 0x65f30c <exec_byte_code+3181>, 0x65f43b <exec_byte_code+3484>, 0x65f43d <exec_byte_code+3486>, 0x65f43f <exec_byte_code+3488>, 
          0x65f441 <exec_byte_code+3490>, 0x65f443 <exec_byte_code+3492>, 0x65f443 <exec_byte_code+3492>, 0x65f3da <exec_byte_code+3387>, 0x65f3fa <exec_byte_code+3419>, 
          0x65fe84 <exec_byte_code+6117>, 0x65fd4c <exec_byte_code+5805>, 0x65fd40 <exec_byte_code+5793>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x66011e <exec_byte_code+6783>, 0x66022f <exec_byte_code+7056>, 
          0x6602ae <exec_byte_code+7183>, 0x66032e <exec_byte_code+7311>, 0x6603af <exec_byte_code+7440>, 0x65ee3e <exec_byte_code+1951>, 0x65eede <exec_byte_code+2111>, 
          0x660448 <exec_byte_code+7593>, 0x65ed96 <exec_byte_code+1783>, 0x65ef5e <exec_byte_code+2239>, 0x6604cf <exec_byte_code+7728>, 0x66054f <exec_byte_code+7856>, 
          0x6605a9 <exec_byte_code+7946>, 0x660629 <exec_byte_code+8074>, 0x660690 <exec_byte_code+8177>, 0x66079a <exec_byte_code+8443>, 0x6607f4 <exec_byte_code+8533>, 
          0x660874 <exec_byte_code+8661>, 0x660917 <exec_byte_code+8824>, 0x660971 <exec_byte_code+8914>, 0x6609cb <exec_byte_code+9004>, 0x660a4b <exec_byte_code+9132>, 
          0x660acb <exec_byte_code+9260>, 0x660b4b <exec_byte_code+9388>, 0x660bee <exec_byte_code+9551>, 0x660c55 <exec_byte_code+9654>, 0x660cbc <exec_byte_code+9757>, 
          0x660dc6 <exec_byte_code+10023>, 0x660e5b <exec_byte_code+10172>, 0x660ef0 <exec_byte_code+10321>, 0x6610da <exec_byte_code+10811>, 
          0x66115f <exec_byte_code+10944>, 0x6611e4 <exec_byte_code+11077>, 0x661269 <exec_byte_code+11210>, 0x6612ee <exec_byte_code+11343>, 
          0x661355 <exec_byte_code+11446>, 0x6613ee <exec_byte_code+11599>, 0x661455 <exec_byte_code+11702>, 0x6614bc <exec_byte_code+11805>, 
          0x661523 <exec_byte_code+11908>, 0x661671 <exec_byte_code+12242>, 0x65fb84 <exec_byte_code+5349>, 0x6616e1 <exec_byte_code+12354>, 
          0x66173b <exec_byte_code+12444>, 0x66183d <exec_byte_code+12702>, 0x6618b8 <exec_byte_code+12825>, 0x661928 <exec_byte_code+12937>, 
          0x661982 <exec_byte_code+13027>, 0x6619da <exec_byte_code+13115>, 0x661a32 <exec_byte_code+13203>, 0x661a92 <exec_byte_code+13299>, 
          0x662cb6 <exec_byte_code+17943>, 0x661afc <exec_byte_code+13405>, 0x661b54 <exec_byte_code+13493>, 0x661bac <exec_byte_code+13581>, 
          0x661c04 <exec_byte_code+13669>, 0x661c5c <exec_byte_code+13757>, 0x661cb4 <exec_byte_code+13845>, 0x65fb84 <exec_byte_code+5349>, 
          0x662cb6 <exec_byte_code+17943>, 0x661d0e <exec_byte_code+13935>, 0x661d75 <exec_byte_code+14038>, 0x661dcf <exec_byte_code+14128>, 
          0x661e29 <exec_byte_code+14218>, 0x661ea9 <exec_byte_code+14346>, 0x661f29 <exec_byte_code+14474>, 0x661f83 <exec_byte_code+14564>, 
          0x662098 <exec_byte_code+14841>, 0x662118 <exec_byte_code+14969>, 0x662198 <exec_byte_code+15097>, 0x662218 <exec_byte_code+15225>, 
          0x662270 <exec_byte_code+15313>, 0x662cb6 <exec_byte_code+17943>, 0x65fa85 <exec_byte_code+5094>, 0x65f513 <exec_byte_code+3700>, 0x65ece3 <exec_byte_code+1604>, 
          0x65f602 <exec_byte_code+3939>, 0x65f6a7 <exec_byte_code+4104>, 0x65f749 <exec_byte_code+4266>, 0x65fa27 <exec_byte_code+5000>, 0x65fa3f <exec_byte_code+5024>, 
          0x65f19e <exec_byte_code+2815>, 0x65fb2f <exec_byte_code+5264>, 0x65fbc7 <exec_byte_code+5416>, 0x65fc64 <exec_byte_code+5573>, 0x65fcb9 <exec_byte_code+5658>, 
          0x65fedc <exec_byte_code+6205>, 0x65ff6b <exec_byte_code+6348>, 0x66000e <exec_byte_code+6511>, 0x660083 <exec_byte_code+6628>, 0x65f4b6 <exec_byte_code+3607>, 
          0x6622ca <exec_byte_code+15403>, 0x66236d <exec_byte_code+15566>, 0x6623c7 <exec_byte_code+15656>, 0x662421 <exec_byte_code+15746>, 
          0x66247b <exec_byte_code+15836>, 0x6624d5 <exec_byte_code+15926>, 0x662555 <exec_byte_code+16054>, 0x6625d5 <exec_byte_code+16182>, 
          0x662655 <exec_byte_code+16310>, 0x6626d5 <exec_byte_code+16438>, 0x662840 <exec_byte_code+16801>, 0x6628c0 <exec_byte_code+16929>, 
          0x662940 <exec_byte_code+17057>, 0x66299a <exec_byte_code+17147>, 0x662a1a <exec_byte_code+17275>, 0x662a9a <exec_byte_code+17403>, 
          0x662af4 <exec_byte_code+17493>, 0x662b4e <exec_byte_code+17583>, 0x66158a <exec_byte_code+12011>, 0x6615f1 <exec_byte_code+12114>, 
          0x662bb5 <exec_byte_code+17686>, 0x662c36 <exec_byte_code+17815>, 0x662cb6 <exec_byte_code+17943>, 0x65f7eb <exec_byte_code+4428>, 0x65f811 <exec_byte_code+4466>, 
          0x65f898 <exec_byte_code+4601>, 0x65f91f <exec_byte_code+4736>, 0x65f9a3 <exec_byte_code+4868>, 0x6606f7 <exec_byte_code+8280>, 0x660d23 <exec_byte_code+9860>, 
          0x66179a <exec_byte_code+12539>, 0x662ee7 <exec_byte_code+18504>, 0x662f71 <exec_byte_code+18642>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x663028 <exec_byte_code+18825>, 0x6630d9 <exec_byte_code+19002>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x6632df <exec_byte_code+19520> <repeats 64 times>}
        const_length = 37
        bytestr_length = 210
        vectorp = 0x7f7b768
        quitcounter = 1 '\001'
        stack_items = 13
        sa_avail = 16070
        sa_count = 13
        sa_must_free = false
        stack_base = 0x7fffffffa120
        stack_lim = 0x7fffffffa188
        top = 0x7fffffffa160
        void_stack_lim = 0x7fffffffa188
        bytestr_data = 0x7fffffffa188 "\304", <incomplete sequence \313>
        pc = 0x7fffffffa19a "\310\311\006\006\237\"\210\006\006\204G"
        count = 13
        result = XIL(0x55ec04)
#32 0x00000000006143b4 in funcall_lambda (fun=XIL(0x7f7b895), nargs=7, arg_vector=0x7fffffffa6d0) at eval.c:2967
        size = 5
        val = XIL(0x55e61d)
        syms_left = make_number(1799)
        next = XIL(0x7f7b890)
        lexenv = XIL(0x7fffffffa628)
        count = 13
        i = 81604355616
        optional = 255
        rest = 255
        previous_optional_or_rest = 255
#33 0x00000000006139a6 in Ffuncall (nargs=8, args=0x7fffffffa6c8) at eval.c:2768
        fun = XIL(0x7f7b895)
        original_fun = XIL(0x8516d20)
        funcar = XIL(0x938fe64)
        numargs = 7
        val = XIL(0x47a0)
        count = 12
#34 0x000000000065f38f in exec_byte_code (bytestr=XIL(0x8fdf194), vector=XIL(0x938e8d5), maxdepth=make_number(8), args_template=make_number(0), nargs=0, args=0x7fffffffaba0)
    at bytecode.c:629
        op = 7
        type = CATCHER
        targets = {0x662cb6 <exec_byte_code+17943>, 0x662d1b <exec_byte_code+18044>, 0x662d1d <exec_byte_code+18046>, 0x662d1f <exec_byte_code+18048>, 
          0x662d21 <exec_byte_code+18050>, 0x662d21 <exec_byte_code+18050>, 0x662d9e <exec_byte_code+18175>, 0x662e2d <exec_byte_code+18318>, 
          0x65ebc2 <exec_byte_code+1315>, 0x65ebc4 <exec_byte_code+1317>, 0x65ebc6 <exec_byte_code+1319>, 0x65ebc8 <exec_byte_code+1321>, 0x65ebca <exec_byte_code+1323>, 
          0x65ebca <exec_byte_code+1323>, 0x65ebd3 <exec_byte_code+1332>, 0x65eb7f <exec_byte_code+1248>, 0x65f007 <exec_byte_code+2408>, 0x65f009 <exec_byte_code+2410>, 
          0x65f00b <exec_byte_code+2412>, 0x65f00d <exec_byte_code+2414>, 0x65f00f <exec_byte_code+2416>, 0x65f00f <exec_byte_code+2416>, 0x65f059 <exec_byte_code+2490>, 
          0x65f018 <exec_byte_code+2425>, 0x65f267 <exec_byte_code+3016>, 0x65f269 <exec_byte_code+3018>, 0x65f26b <exec_byte_code+3020>, 0x65f26d <exec_byte_code+3022>, 
          0x65f26f <exec_byte_code+3024>, 0x65f26f <exec_byte_code+3024>, 0x65f206 <exec_byte_code+2919>, 0x65f226 <exec_byte_code+2951>, 0x65f34d <exec_byte_code+3246>, 
          0x65f34f <exec_byte_code+3248>, 0x65f351 <exec_byte_code+3250>, 0x65f353 <exec_byte_code+3252>, 0x65f355 <exec_byte_code+3254>, 0x65f355 <exec_byte_code+3254>, 
          0x65f2ec <exec_byte_code+3149>, 0x65f30c <exec_byte_code+3181>, 0x65f43b <exec_byte_code+3484>, 0x65f43d <exec_byte_code+3486>, 0x65f43f <exec_byte_code+3488>, 
          0x65f441 <exec_byte_code+3490>, 0x65f443 <exec_byte_code+3492>, 0x65f443 <exec_byte_code+3492>, 0x65f3da <exec_byte_code+3387>, 0x65f3fa <exec_byte_code+3419>, 
          0x65fe84 <exec_byte_code+6117>, 0x65fd4c <exec_byte_code+5805>, 0x65fd40 <exec_byte_code+5793>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x66011e <exec_byte_code+6783>, 0x66022f <exec_byte_code+7056>, 
          0x6602ae <exec_byte_code+7183>, 0x66032e <exec_byte_code+7311>, 0x6603af <exec_byte_code+7440>, 0x65ee3e <exec_byte_code+1951>, 0x65eede <exec_byte_code+2111>, 
          0x660448 <exec_byte_code+7593>, 0x65ed96 <exec_byte_code+1783>, 0x65ef5e <exec_byte_code+2239>, 0x6604cf <exec_byte_code+7728>, 0x66054f <exec_byte_code+7856>, 
          0x6605a9 <exec_byte_code+7946>, 0x660629 <exec_byte_code+8074>, 0x660690 <exec_byte_code+8177>, 0x66079a <exec_byte_code+8443>, 0x6607f4 <exec_byte_code+8533>, 
          0x660874 <exec_byte_code+8661>, 0x660917 <exec_byte_code+8824>, 0x660971 <exec_byte_code+8914>, 0x6609cb <exec_byte_code+9004>, 0x660a4b <exec_byte_code+9132>, 
          0x660acb <exec_byte_code+9260>, 0x660b4b <exec_byte_code+9388>, 0x660bee <exec_byte_code+9551>, 0x660c55 <exec_byte_code+9654>, 0x660cbc <exec_byte_code+9757>, 
          0x660dc6 <exec_byte_code+10023>, 0x660e5b <exec_byte_code+10172>, 0x660ef0 <exec_byte_code+10321>, 0x6610da <exec_byte_code+10811>, 
          0x66115f <exec_byte_code+10944>, 0x6611e4 <exec_byte_code+11077>, 0x661269 <exec_byte_code+11210>, 0x6612ee <exec_byte_code+11343>, 
          0x661355 <exec_byte_code+11446>, 0x6613ee <exec_byte_code+11599>, 0x661455 <exec_byte_code+11702>, 0x6614bc <exec_byte_code+11805>, 
          0x661523 <exec_byte_code+11908>, 0x661671 <exec_byte_code+12242>, 0x65fb84 <exec_byte_code+5349>, 0x6616e1 <exec_byte_code+12354>, 
          0x66173b <exec_byte_code+12444>, 0x66183d <exec_byte_code+12702>, 0x6618b8 <exec_byte_code+12825>, 0x661928 <exec_byte_code+12937>, 
          0x661982 <exec_byte_code+13027>, 0x6619da <exec_byte_code+13115>, 0x661a32 <exec_byte_code+13203>, 0x661a92 <exec_byte_code+13299>, 
          0x662cb6 <exec_byte_code+17943>, 0x661afc <exec_byte_code+13405>, 0x661b54 <exec_byte_code+13493>, 0x661bac <exec_byte_code+13581>, 
          0x661c04 <exec_byte_code+13669>, 0x661c5c <exec_byte_code+13757>, 0x661cb4 <exec_byte_code+13845>, 0x65fb84 <exec_byte_code+5349>, 
          0x662cb6 <exec_byte_code+17943>, 0x661d0e <exec_byte_code+13935>, 0x661d75 <exec_byte_code+14038>, 0x661dcf <exec_byte_code+14128>, 
          0x661e29 <exec_byte_code+14218>, 0x661ea9 <exec_byte_code+14346>, 0x661f29 <exec_byte_code+14474>, 0x661f83 <exec_byte_code+14564>, 
          0x662098 <exec_byte_code+14841>, 0x662118 <exec_byte_code+14969>, 0x662198 <exec_byte_code+15097>, 0x662218 <exec_byte_code+15225>, 
          0x662270 <exec_byte_code+15313>, 0x662cb6 <exec_byte_code+17943>, 0x65fa85 <exec_byte_code+5094>, 0x65f513 <exec_byte_code+3700>, 0x65ece3 <exec_byte_code+1604>, 
          0x65f602 <exec_byte_code+3939>, 0x65f6a7 <exec_byte_code+4104>, 0x65f749 <exec_byte_code+4266>, 0x65fa27 <exec_byte_code+5000>, 0x65fa3f <exec_byte_code+5024>, 
          0x65f19e <exec_byte_code+2815>, 0x65fb2f <exec_byte_code+5264>, 0x65fbc7 <exec_byte_code+5416>, 0x65fc64 <exec_byte_code+5573>, 0x65fcb9 <exec_byte_code+5658>, 
          0x65fedc <exec_byte_code+6205>, 0x65ff6b <exec_byte_code+6348>, 0x66000e <exec_byte_code+6511>, 0x660083 <exec_byte_code+6628>, 0x65f4b6 <exec_byte_code+3607>, 
          0x6622ca <exec_byte_code+15403>, 0x66236d <exec_byte_code+15566>, 0x6623c7 <exec_byte_code+15656>, 0x662421 <exec_byte_code+15746>, 
          0x66247b <exec_byte_code+15836>, 0x6624d5 <exec_byte_code+15926>, 0x662555 <exec_byte_code+16054>, 0x6625d5 <exec_byte_code+16182>, 
          0x662655 <exec_byte_code+16310>, 0x6626d5 <exec_byte_code+16438>, 0x662840 <exec_byte_code+16801>, 0x6628c0 <exec_byte_code+16929>, 
          0x662940 <exec_byte_code+17057>, 0x66299a <exec_byte_code+17147>, 0x662a1a <exec_byte_code+17275>, 0x662a9a <exec_byte_code+17403>, 
          0x662af4 <exec_byte_code+17493>, 0x662b4e <exec_byte_code+17583>, 0x66158a <exec_byte_code+12011>, 0x6615f1 <exec_byte_code+12114>, 
          0x662bb5 <exec_byte_code+17686>, 0x662c36 <exec_byte_code+17815>, 0x662cb6 <exec_byte_code+17943>, 0x65f7eb <exec_byte_code+4428>, 0x65f811 <exec_byte_code+4466>, 
          0x65f898 <exec_byte_code+4601>, 0x65f91f <exec_byte_code+4736>, 0x65f9a3 <exec_byte_code+4868>, 0x6606f7 <exec_byte_code+8280>, 0x660d23 <exec_byte_code+9860>, 
          0x66179a <exec_byte_code+12539>, 0x662ee7 <exec_byte_code+18504>, 0x662f71 <exec_byte_code+18642>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x663028 <exec_byte_code+18825>, 0x6630d9 <exec_byte_code+19002>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x6632df <exec_byte_code+19520> <repeats 64 times>}
        const_length = 13
        bytestr_length = 46
        vectorp = 0x938e8d8
        quitcounter = 1 '\001'
        stack_items = 9
        sa_avail = 16266
        sa_count = 10
        sa_must_free = false
        stack_base = 0x7fffffffa6c0
        stack_lim = 0x7fffffffa708
        top = 0x7fffffffa6c8
        void_stack_lim = 0x7fffffffa708
        bytestr_data = 0x7fffffffa708 "r\310\016\v!q\210Ţ\203\030"
        pc = 0x7fffffffa734 "*\207"
        count = 10
        result = XIL(0x57d4723)
#35 0x00000000006143b4 in funcall_lambda (fun=XIL(0x938e945), nargs=0, arg_vector=0x7fffffffaba0) at eval.c:2967
        size = 4
        val = XIL(0x55e61d)
        syms_left = make_number(0)
        next = XIL(0x938e940)
        lexenv = XIL(0x7fffffffaaf8)
        count = 10
        i = 81604356848
        optional = false
        rest = false
        previous_optional_or_rest = false
#36 0x00000000006139a6 in Ffuncall (nargs=1, args=0x7fffffffab98) at eval.c:2768
        fun = XIL(0x938e945)
        original_fun = XIL(0x938e945)
        funcar = XIL(0x7fffffffab70)
        numargs = 0
        val = XIL(0x610471)
        count = 9
#37 0x000000000065f38f in exec_byte_code (bytestr=XIL(0x8fdec64), vector=XIL(0x7bc16d5), maxdepth=make_number(6), args_template=make_number(257), nargs=1, 
    args=0x7fffffffb0e8) at bytecode.c:629
        op = 0
        type = CONDITION_CASE
        targets = {0x662cb6 <exec_byte_code+17943>, 0x662d1b <exec_byte_code+18044>, 0x662d1d <exec_byte_code+18046>, 0x662d1f <exec_byte_code+18048>, 
          0x662d21 <exec_byte_code+18050>, 0x662d21 <exec_byte_code+18050>, 0x662d9e <exec_byte_code+18175>, 0x662e2d <exec_byte_code+18318>, 
          0x65ebc2 <exec_byte_code+1315>, 0x65ebc4 <exec_byte_code+1317>, 0x65ebc6 <exec_byte_code+1319>, 0x65ebc8 <exec_byte_code+1321>, 0x65ebca <exec_byte_code+1323>, 
          0x65ebca <exec_byte_code+1323>, 0x65ebd3 <exec_byte_code+1332>, 0x65eb7f <exec_byte_code+1248>, 0x65f007 <exec_byte_code+2408>, 0x65f009 <exec_byte_code+2410>, 
          0x65f00b <exec_byte_code+2412>, 0x65f00d <exec_byte_code+2414>, 0x65f00f <exec_byte_code+2416>, 0x65f00f <exec_byte_code+2416>, 0x65f059 <exec_byte_code+2490>, 
          0x65f018 <exec_byte_code+2425>, 0x65f267 <exec_byte_code+3016>, 0x65f269 <exec_byte_code+3018>, 0x65f26b <exec_byte_code+3020>, 0x65f26d <exec_byte_code+3022>, 
          0x65f26f <exec_byte_code+3024>, 0x65f26f <exec_byte_code+3024>, 0x65f206 <exec_byte_code+2919>, 0x65f226 <exec_byte_code+2951>, 0x65f34d <exec_byte_code+3246>, 
          0x65f34f <exec_byte_code+3248>, 0x65f351 <exec_byte_code+3250>, 0x65f353 <exec_byte_code+3252>, 0x65f355 <exec_byte_code+3254>, 0x65f355 <exec_byte_code+3254>, 
          0x65f2ec <exec_byte_code+3149>, 0x65f30c <exec_byte_code+3181>, 0x65f43b <exec_byte_code+3484>, 0x65f43d <exec_byte_code+3486>, 0x65f43f <exec_byte_code+3488>, 
          0x65f441 <exec_byte_code+3490>, 0x65f443 <exec_byte_code+3492>, 0x65f443 <exec_byte_code+3492>, 0x65f3da <exec_byte_code+3387>, 0x65f3fa <exec_byte_code+3419>, 
          0x65fe84 <exec_byte_code+6117>, 0x65fd4c <exec_byte_code+5805>, 0x65fd40 <exec_byte_code+5793>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x66011e <exec_byte_code+6783>, 0x66022f <exec_byte_code+7056>, 
          0x6602ae <exec_byte_code+7183>, 0x66032e <exec_byte_code+7311>, 0x6603af <exec_byte_code+7440>, 0x65ee3e <exec_byte_code+1951>, 0x65eede <exec_byte_code+2111>, 
          0x660448 <exec_byte_code+7593>, 0x65ed96 <exec_byte_code+1783>, 0x65ef5e <exec_byte_code+2239>, 0x6604cf <exec_byte_code+7728>, 0x66054f <exec_byte_code+7856>, 
          0x6605a9 <exec_byte_code+7946>, 0x660629 <exec_byte_code+8074>, 0x660690 <exec_byte_code+8177>, 0x66079a <exec_byte_code+8443>, 0x6607f4 <exec_byte_code+8533>, 
          0x660874 <exec_byte_code+8661>, 0x660917 <exec_byte_code+8824>, 0x660971 <exec_byte_code+8914>, 0x6609cb <exec_byte_code+9004>, 0x660a4b <exec_byte_code+9132>, 
          0x660acb <exec_byte_code+9260>, 0x660b4b <exec_byte_code+9388>, 0x660bee <exec_byte_code+9551>, 0x660c55 <exec_byte_code+9654>, 0x660cbc <exec_byte_code+9757>, 
          0x660dc6 <exec_byte_code+10023>, 0x660e5b <exec_byte_code+10172>, 0x660ef0 <exec_byte_code+10321>, 0x6610da <exec_byte_code+10811>, 
          0x66115f <exec_byte_code+10944>, 0x6611e4 <exec_byte_code+11077>, 0x661269 <exec_byte_code+11210>, 0x6612ee <exec_byte_code+11343>, 
          0x661355 <exec_byte_code+11446>, 0x6613ee <exec_byte_code+11599>, 0x661455 <exec_byte_code+11702>, 0x6614bc <exec_byte_code+11805>, 
          0x661523 <exec_byte_code+11908>, 0x661671 <exec_byte_code+12242>, 0x65fb84 <exec_byte_code+5349>, 0x6616e1 <exec_byte_code+12354>, 
          0x66173b <exec_byte_code+12444>, 0x66183d <exec_byte_code+12702>, 0x6618b8 <exec_byte_code+12825>, 0x661928 <exec_byte_code+12937>, 
          0x661982 <exec_byte_code+13027>, 0x6619da <exec_byte_code+13115>, 0x661a32 <exec_byte_code+13203>, 0x661a92 <exec_byte_code+13299>, 
          0x662cb6 <exec_byte_code+17943>, 0x661afc <exec_byte_code+13405>, 0x661b54 <exec_byte_code+13493>, 0x661bac <exec_byte_code+13581>, 
          0x661c04 <exec_byte_code+13669>, 0x661c5c <exec_byte_code+13757>, 0x661cb4 <exec_byte_code+13845>, 0x65fb84 <exec_byte_code+5349>, 
          0x662cb6 <exec_byte_code+17943>, 0x661d0e <exec_byte_code+13935>, 0x661d75 <exec_byte_code+14038>, 0x661dcf <exec_byte_code+14128>, 
          0x661e29 <exec_byte_code+14218>, 0x661ea9 <exec_byte_code+14346>, 0x661f29 <exec_byte_code+14474>, 0x661f83 <exec_byte_code+14564>, 
          0x662098 <exec_byte_code+14841>, 0x662118 <exec_byte_code+14969>, 0x662198 <exec_byte_code+15097>, 0x662218 <exec_byte_code+15225>, 
          0x662270 <exec_byte_code+15313>, 0x662cb6 <exec_byte_code+17943>, 0x65fa85 <exec_byte_code+5094>, 0x65f513 <exec_byte_code+3700>, 0x65ece3 <exec_byte_code+1604>, 
          0x65f602 <exec_byte_code+3939>, 0x65f6a7 <exec_byte_code+4104>, 0x65f749 <exec_byte_code+4266>, 0x65fa27 <exec_byte_code+5000>, 0x65fa3f <exec_byte_code+5024>, 
          0x65f19e <exec_byte_code+2815>, 0x65fb2f <exec_byte_code+5264>, 0x65fbc7 <exec_byte_code+5416>, 0x65fc64 <exec_byte_code+5573>, 0x65fcb9 <exec_byte_code+5658>, 
          0x65fedc <exec_byte_code+6205>, 0x65ff6b <exec_byte_code+6348>, 0x66000e <exec_byte_code+6511>, 0x660083 <exec_byte_code+6628>, 0x65f4b6 <exec_byte_code+3607>, 
          0x6622ca <exec_byte_code+15403>, 0x66236d <exec_byte_code+15566>, 0x6623c7 <exec_byte_code+15656>, 0x662421 <exec_byte_code+15746>, 
          0x66247b <exec_byte_code+15836>, 0x6624d5 <exec_byte_code+15926>, 0x662555 <exec_byte_code+16054>, 0x6625d5 <exec_byte_code+16182>, 
          0x662655 <exec_byte_code+16310>, 0x6626d5 <exec_byte_code+16438>, 0x662840 <exec_byte_code+16801>, 0x6628c0 <exec_byte_code+16929>, 
          0x662940 <exec_byte_code+17057>, 0x66299a <exec_byte_code+17147>, 0x662a1a <exec_byte_code+17275>, 0x662a9a <exec_byte_code+17403>, 
          0x662af4 <exec_byte_code+17493>, 0x662b4e <exec_byte_code+17583>, 0x66158a <exec_byte_code+12011>, 0x6615f1 <exec_byte_code+12114>, 
          0x662bb5 <exec_byte_code+17686>, 0x662c36 <exec_byte_code+17815>, 0x662cb6 <exec_byte_code+17943>, 0x65f7eb <exec_byte_code+4428>, 0x65f811 <exec_byte_code+4466>, 
          0x65f898 <exec_byte_code+4601>, 0x65f91f <exec_byte_code+4736>, 0x65f9a3 <exec_byte_code+4868>, 0x6606f7 <exec_byte_code+8280>, 0x660d23 <exec_byte_code+9860>, 
          0x66179a <exec_byte_code+12539>, 0x662ee7 <exec_byte_code+18504>, 0x662f71 <exec_byte_code+18642>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x663028 <exec_byte_code+18825>, 0x6630d9 <exec_byte_code+19002>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x6632df <exec_byte_code+19520> <repeats 64 times>}
        const_length = 5
        bytestr_length = 27
        vectorp = 0x7bc16d8
        quitcounter = 1 '\001'
        stack_items = 7
        sa_avail = 16301
        sa_count = 9
        sa_must_free = false
        stack_base = 0x7fffffffab80
        stack_lim = 0x7fffffffabb8
        top = 0x7fffffffab98
        void_stack_lim = 0x7fffffffabb8
        bytestr_data = 0x7fffffffabb8 "\300\001\301\"\302\002\301\303#\210\211\205\032"
        pc = 0x7fffffffabcc "0\202\032"
        count = 9
        result = XIL(0)
#38 0x00000000006143b4 in funcall_lambda (fun=XIL(0x7bc1705), nargs=1, arg_vector=0x7fffffffb0e0) at eval.c:2967
        size = 5
        val = XIL(0x55e61d)
        syms_left = make_number(257)
        next = XIL(0x7bc1700)
        lexenv = XIL(0x7fffffffafa8)
        count = 9
        i = 81604358048
        optional = false
        rest = false
        previous_optional_or_rest = false
#39 0x00000000006139a6 in Ffuncall (nargs=2, args=0x7fffffffb0d8) at eval.c:2768
        fun = XIL(0x7bc1705)
        original_fun = XIL(0x85156b0)
        funcar = XIL(0xac8660)
        numargs = 1
        val = XIL(0)
        count = 8
#40 0x000000000065f38f in exec_byte_code (bytestr=XIL(0x8fdec84), vector=XIL(0x7f7b455), maxdepth=make_number(34), args_template=make_number(514), nargs=2, 
    args=0x7fffffffb998) at bytecode.c:629
        op = 1
        type = CONDITION_CASE
        targets = {0x662cb6 <exec_byte_code+17943>, 0x662d1b <exec_byte_code+18044>, 0x662d1d <exec_byte_code+18046>, 0x662d1f <exec_byte_code+18048>, 
          0x662d21 <exec_byte_code+18050>, 0x662d21 <exec_byte_code+18050>, 0x662d9e <exec_byte_code+18175>, 0x662e2d <exec_byte_code+18318>, 
          0x65ebc2 <exec_byte_code+1315>, 0x65ebc4 <exec_byte_code+1317>, 0x65ebc6 <exec_byte_code+1319>, 0x65ebc8 <exec_byte_code+1321>, 0x65ebca <exec_byte_code+1323>, 
          0x65ebca <exec_byte_code+1323>, 0x65ebd3 <exec_byte_code+1332>, 0x65eb7f <exec_byte_code+1248>, 0x65f007 <exec_byte_code+2408>, 0x65f009 <exec_byte_code+2410>, 
          0x65f00b <exec_byte_code+2412>, 0x65f00d <exec_byte_code+2414>, 0x65f00f <exec_byte_code+2416>, 0x65f00f <exec_byte_code+2416>, 0x65f059 <exec_byte_code+2490>, 
          0x65f018 <exec_byte_code+2425>, 0x65f267 <exec_byte_code+3016>, 0x65f269 <exec_byte_code+3018>, 0x65f26b <exec_byte_code+3020>, 0x65f26d <exec_byte_code+3022>, 
          0x65f26f <exec_byte_code+3024>, 0x65f26f <exec_byte_code+3024>, 0x65f206 <exec_byte_code+2919>, 0x65f226 <exec_byte_code+2951>, 0x65f34d <exec_byte_code+3246>, 
          0x65f34f <exec_byte_code+3248>, 0x65f351 <exec_byte_code+3250>, 0x65f353 <exec_byte_code+3252>, 0x65f355 <exec_byte_code+3254>, 0x65f355 <exec_byte_code+3254>, 
          0x65f2ec <exec_byte_code+3149>, 0x65f30c <exec_byte_code+3181>, 0x65f43b <exec_byte_code+3484>, 0x65f43d <exec_byte_code+3486>, 0x65f43f <exec_byte_code+3488>, 
          0x65f441 <exec_byte_code+3490>, 0x65f443 <exec_byte_code+3492>, 0x65f443 <exec_byte_code+3492>, 0x65f3da <exec_byte_code+3387>, 0x65f3fa <exec_byte_code+3419>, 
          0x65fe84 <exec_byte_code+6117>, 0x65fd4c <exec_byte_code+5805>, 0x65fd40 <exec_byte_code+5793>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x66011e <exec_byte_code+6783>, 0x66022f <exec_byte_code+7056>, 
          0x6602ae <exec_byte_code+7183>, 0x66032e <exec_byte_code+7311>, 0x6603af <exec_byte_code+7440>, 0x65ee3e <exec_byte_code+1951>, 0x65eede <exec_byte_code+2111>, 
          0x660448 <exec_byte_code+7593>, 0x65ed96 <exec_byte_code+1783>, 0x65ef5e <exec_byte_code+2239>, 0x6604cf <exec_byte_code+7728>, 0x66054f <exec_byte_code+7856>, 
          0x6605a9 <exec_byte_code+7946>, 0x660629 <exec_byte_code+8074>, 0x660690 <exec_byte_code+8177>, 0x66079a <exec_byte_code+8443>, 0x6607f4 <exec_byte_code+8533>, 
          0x660874 <exec_byte_code+8661>, 0x660917 <exec_byte_code+8824>, 0x660971 <exec_byte_code+8914>, 0x6609cb <exec_byte_code+9004>, 0x660a4b <exec_byte_code+9132>, 
          0x660acb <exec_byte_code+9260>, 0x660b4b <exec_byte_code+9388>, 0x660bee <exec_byte_code+9551>, 0x660c55 <exec_byte_code+9654>, 0x660cbc <exec_byte_code+9757>, 
          0x660dc6 <exec_byte_code+10023>, 0x660e5b <exec_byte_code+10172>, 0x660ef0 <exec_byte_code+10321>, 0x6610da <exec_byte_code+10811>, 
          0x66115f <exec_byte_code+10944>, 0x6611e4 <exec_byte_code+11077>, 0x661269 <exec_byte_code+11210>, 0x6612ee <exec_byte_code+11343>, 
          0x661355 <exec_byte_code+11446>, 0x6613ee <exec_byte_code+11599>, 0x661455 <exec_byte_code+11702>, 0x6614bc <exec_byte_code+11805>, 
          0x661523 <exec_byte_code+11908>, 0x661671 <exec_byte_code+12242>, 0x65fb84 <exec_byte_code+5349>, 0x6616e1 <exec_byte_code+12354>, 
          0x66173b <exec_byte_code+12444>, 0x66183d <exec_byte_code+12702>, 0x6618b8 <exec_byte_code+12825>, 0x661928 <exec_byte_code+12937>, 
          0x661982 <exec_byte_code+13027>, 0x6619da <exec_byte_code+13115>, 0x661a32 <exec_byte_code+13203>, 0x661a92 <exec_byte_code+13299>, 
          0x662cb6 <exec_byte_code+17943>, 0x661afc <exec_byte_code+13405>, 0x661b54 <exec_byte_code+13493>, 0x661bac <exec_byte_code+13581>, 
          0x661c04 <exec_byte_code+13669>, 0x661c5c <exec_byte_code+13757>, 0x661cb4 <exec_byte_code+13845>, 0x65fb84 <exec_byte_code+5349>, 
          0x662cb6 <exec_byte_code+17943>, 0x661d0e <exec_byte_code+13935>, 0x661d75 <exec_byte_code+14038>, 0x661dcf <exec_byte_code+14128>, 
          0x661e29 <exec_byte_code+14218>, 0x661ea9 <exec_byte_code+14346>, 0x661f29 <exec_byte_code+14474>, 0x661f83 <exec_byte_code+14564>, 
          0x662098 <exec_byte_code+14841>, 0x662118 <exec_byte_code+14969>, 0x662198 <exec_byte_code+15097>, 0x662218 <exec_byte_code+15225>, 
          0x662270 <exec_byte_code+15313>, 0x662cb6 <exec_byte_code+17943>, 0x65fa85 <exec_byte_code+5094>, 0x65f513 <exec_byte_code+3700>, 0x65ece3 <exec_byte_code+1604>, 
          0x65f602 <exec_byte_code+3939>, 0x65f6a7 <exec_byte_code+4104>, 0x65f749 <exec_byte_code+4266>, 0x65fa27 <exec_byte_code+5000>, 0x65fa3f <exec_byte_code+5024>, 
          0x65f19e <exec_byte_code+2815>, 0x65fb2f <exec_byte_code+5264>, 0x65fbc7 <exec_byte_code+5416>, 0x65fc64 <exec_byte_code+5573>, 0x65fcb9 <exec_byte_code+5658>, 
          0x65fedc <exec_byte_code+6205>, 0x65ff6b <exec_byte_code+6348>, 0x66000e <exec_byte_code+6511>, 0x660083 <exec_byte_code+6628>, 0x65f4b6 <exec_byte_code+3607>, 
          0x6622ca <exec_byte_code+15403>, 0x66236d <exec_byte_code+15566>, 0x6623c7 <exec_byte_code+15656>, 0x662421 <exec_byte_code+15746>, 
          0x66247b <exec_byte_code+15836>, 0x6624d5 <exec_byte_code+15926>, 0x662555 <exec_byte_code+16054>, 0x6625d5 <exec_byte_code+16182>, 
          0x662655 <exec_byte_code+16310>, 0x6626d5 <exec_byte_code+16438>, 0x662840 <exec_byte_code+16801>, 0x6628c0 <exec_byte_code+16929>, 
          0x662940 <exec_byte_code+17057>, 0x66299a <exec_byte_code+17147>, 0x662a1a <exec_byte_code+17275>, 0x662a9a <exec_byte_code+17403>, 
          0x662af4 <exec_byte_code+17493>, 0x662b4e <exec_byte_code+17583>, 0x66158a <exec_byte_code+12011>, 0x6615f1 <exec_byte_code+12114>, 
          0x662bb5 <exec_byte_code+17686>, 0x662c36 <exec_byte_code+17815>, 0x662cb6 <exec_byte_code+17943>, 0x65f7eb <exec_byte_code+4428>, 0x65f811 <exec_byte_code+4466>, 
          0x65f898 <exec_byte_code+4601>, 0x65f91f <exec_byte_code+4736>, 0x65f9a3 <exec_byte_code+4868>, 0x6606f7 <exec_byte_code+8280>, 0x660d23 <exec_byte_code+9860>, 
          0x66179a <exec_byte_code+12539>, 0x662ee7 <exec_byte_code+18504>, 0x662f71 <exec_byte_code+18642>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x663028 <exec_byte_code+18825>, 0x6630d9 <exec_byte_code+19002>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 
          0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x662cb6 <exec_byte_code+17943>, 0x6632df <exec_byte_code+19520> <repeats 64 times>}
        const_length = 90
        bytestr_length = 995
        vectorp = 0x7f7b458
        quitcounter = 5 '\005'
        stack_items = 35
        sa_avail = 15109
        sa_count = 8
        sa_must_free = false
        stack_base = 0x7fffffffb040
        stack_lim = 0x7fffffffb158
        top = 0x7fffffffb0d8
        void_stack_lim = 0x7fffffffb158
        bytestr_data = 0x7fffffffb158 "\305\062\342\003\306\307\002P\003\"\210\310\002\311\"\204U"
        pc = 0x7fffffffb52b "\266\220\060\202\341\003\201Y"
        count = 8
        result = XIL(0x7fffffffb7c0)
#41 0x00000000006143b4 in funcall_lambda (fun=XIL(0x7f7b735), nargs=2, arg_vector=0x7fffffffb988) at eval.c:2967
        size = 5
        val = XIL(0x55e61d)
        syms_left = make_number(514)
        next = XIL(0x7f7b730)
        lexenv = XIL(0x7fffffffb8f8)
        count = 8
        i = 81604360432
        optional = false
        rest = false
        previous_optional_or_rest = false
#42 0x00000000006139a6 in Ffuncall (nargs=3, args=0x7fffffffb980) at eval.c:2768
        fun = XIL(0x7f7b735)
        original_fun = XIL(0x8515410)
        funcar = XIL(0xac8660)
        numargs = 2
        val = XIL(0)
        count = 7
#43 0x0000000000612c3b in Fapply (nargs=2, args=0x7fffffffba60) at eval.c:2386
        i = 3
        numargs = 2
        funcall_nargs = 3
        funcall_args = 0x7fffffffb980
        spread_arg = XIL(0)
        fun = XIL(0x7f7b735)
        retval = XIL(0x668e815)
        sa_avail = 16360
        sa_count = 7
        sa_must_free = false
#44 0x00000000006131ef in apply1 (fn=XIL(0x8515410), arg=XIL(0x5814ec3)) at eval.c:2602
No locals.
#45 0x000000000067044f in read_process_output_call (fun_and_args=XIL(0x5814ed3)) at process.c:5790
No locals.
#46 0x00000000006102c8 in internal_condition_case_1 (bfun=0x67041e <read_process_output_call>, arg=XIL(0x5814ed3), handlers=XIL(0x5250), 
    hfun=0x670451 <read_process_output_error_handler>) at eval.c:1356
        val = XIL(0x938e735)
        c = 0x2b418a0
#47 0x0000000000670d2a in read_and_dispose_of_process_output (p=0x938e730, 
    chars=0x7fffffffbbc0 "-dir /home/matthew/workspace/storage/opensource/llvm-project-unofficial-github-mirror.git/ -current-frame -tty /dev/pts/7 dumb -file /home/matthew/workspace/storage/opensource/llvm-project-unofficial-"..., nbytes=239, coding=0x8f07a50) at process.c:5998
        outstream = XIL(0x8515410)
        text = XIL(0x938f8b4)
        outer_running_asynch_code = false
        waiting = -1
#48 0x0000000000670932 in read_process_output (proc=XIL(0x938e735), channel=20) at process.c:5909
        nbytes = 239
        p = 0x938e730
        coding = 0x8f07a50
        carryover = 0
        count = 4
        odeactivate = XIL(0)
        chars = "-dir /home/matthew/workspace/storage/opensource/llvm-project-unofficial-github-mirror.git/ -current-frame -tty /dev/pts/7 dumb -file /home/matthew/workspace/storage/opensource/llvm-project-unofficial-"...
#49 0x000000000066fcf0 in wait_reading_process_output (time_limit=30, nsecs=0, read_kbd=-1, do_display=true, wait_for_cell=XIL(0), wait_proc=0x0, just_wait_proc=0)
    at process.c:5608
        nread = 0
        process_skipped = true
        channel = 20
        nfds = 1
        Available = {
          fds_bits = {1048576, 0 <repeats 15 times>}
        }
        Writeok = {
          fds_bits = {0 <repeats 16 times>}
        }
        check_write = true
        check_delay = 0
        no_avail = false
        xerrno = 11
        proc = XIL(0x938e735)
        timeout = {
          tv_sec = 0, 
          tv_nsec = 20000000
        }
        end_time = {
          tv_sec = 1509269470, 
          tv_nsec = 43418519
        }
        timer_delay = {
          tv_sec = 0, 
          tv_nsec = 67285491
        }
        got_output_end_time = {
          tv_sec = 0, 
          tv_nsec = -1
        }
        wait = TIMEOUT
        got_some_output = -1
        retry_for_async = false
        count = 3
        now = {
          tv_sec = 0, 
          tv_nsec = -1
        }
#50 0x00000000004248df in sit_for (timeout=make_number(30), reading=true, display_option=1) at dispnew.c:5793
        sec = 30
        nsec = 0
        do_display = true
#51 0x000000000056afcd in read_char (commandflag=1, map=XIL(0x5801ad3), prev_event=XIL(0), used_mouse_menu=0x7fffffffd361, end_time=0x0) at keyboard.c:2717
        tem0 = XIL(0x5f2edb)
        timeout = 30
        delay_level = 4
        buffer_size = 10
        c = XIL(0)
        jmpcount = 3
        local_getcjmp = {{
            __jmpbuf = {0, -5784433616548994252, 4291728, 140737488345424, 0, 0, -5784433616513342668, 5784432916335878964}, 
            __mask_was_saved = 0, 
            __saved_mask = {
              __val = {5769419, 11306592, 0, 0, 140737488343520, 5627596, 5805312, 140737488343632, 6379229, 0, 3, 92281523, 0, 140737488343632, 6191436, 11306592}
            }
          }}
        save_jump = {{
            __jmpbuf = {0, 0, 0, 0, 0, 0, 0, 0}, 
            __mask_was_saved = 0, 
            __saved_mask = {
              __val = {0 <repeats 16 times>}
            }
          }}
        tem = XIL(0x668e810)
        save = XIL(0xac7ce0)
        previous_echo_area_message = XIL(0)
        also_record = XIL(0)
        reread = false
        recorded = false
        polling_stopped_here = false
        orig_kboard = 0x2bee2f0
#52 0x0000000000577dc4 in read_key_sequence (keybuf=0x7fffffffd500, bufsize=30, prompt=XIL(0), dont_downcase_last=false, can_return_switch_frame=true, 
    fix_current_buffer=true, prevent_redisplay=false) at keyboard.c:9147
        interrupted_kboard = 0x2bee2f0
        interrupted_frame = 0x12f4c30 <bss_sbrk_buffer+8423664>
        key = XIL(0x668e815)
        used_mouse_menu = false
        echo_local_start = 0
        last_real_key_start = 0
        keys_local_start = 0
        new_binding = XIL(0)
        count = 3
        t = 0
        echo_start = 0
        keys_start = 0
        current_binding = XIL(0x5801ad3)
        first_event = XIL(0)
        first_unbound = 31
        mock_input = 0
        fkey = {
          parent = XIL(0xf4ec23), 
          map = XIL(0xf4ec23), 
          start = 0, 
          end = 0
        }
        keytran = {
          parent = XIL(0xb59a93), 
          map = XIL(0xb59a93), 
          start = 0, 
          end = 0
        }
        indec = {
          parent = XIL(0xf4ec43), 
          map = XIL(0xf4ec43), 
          start = 0, 
          end = 0
        }
        shift_translated = false
        delayed_switch_frame = XIL(0)
        original_uppercase = XIL(0)
        original_uppercase_position = -1
        dummyflag = false
        starting_buffer = 0x668e810
        fake_prefixed_keys = XIL(0)
#53 0x0000000000567961 in command_loop_1 () at keyboard.c:1368
        cmd = XIL(0x67de280)
        keybuf = {make_number(99), make_number(103), make_number(115), XIL(0x7fffffffd580), XIL(0xac8660), XIL(0x7fffffffd540), XIL(0), XIL(0x7fffffffd550), XIL(0x55decc), 
          XIL(0), XIL(0x7fffffffd5c0), XIL(0x6156dd), XIL(0x4cf8163), XIL(0x3), XIL(0xac8660), XIL(0), XIL(0), XIL(0x7fffffffd5a0), XIL(0x55decc), XIL(0xb5c405), 
          XIL(0x7fffffffd5e0), XIL(0x610568), XIL(0x10055decc), XIL(0x5250), XIL(0x7fffffffd600), XIL(0x2b41780), XIL(0), XIL(0), XIL(0x7fffffffd610), XIL(0x610471)}
        i = 1
        prev_modiff = 220
        prev_buffer = 0x6091140
        already_adjusted = false
#54 0x0000000000610221 in internal_condition_case (bfun=0x567535 <command_loop_1>, handlers=XIL(0x5250), hfun=0x566cc4 <cmd_error>) at eval.c:1332
        val = XIL(0x55decc)
        c = 0x2b41780
#55 0x000000000056721b in command_loop_2 (ignore=XIL(0)) at keyboard.c:1110
        val = XIL(0)
#56 0x000000000060fac8 in internal_catch (tag=XIL(0xc6f0), func=0x5671ee <command_loop_2>, arg=XIL(0)) at eval.c:1097
        val = XIL(0x7fffffffd6e0)
        c = 0x2b41660
#57 0x00000000005671b9 in command_loop () at keyboard.c:1089
No locals.
#58 0x0000000000566896 in recursive_edit_1 () at keyboard.c:695
        count = 1
        val = XIL(0x7fffffffd740)
#59 0x0000000000566a17 in Frecursive_edit () at keyboard.c:766
        count = 0
        buffer = XIL(0)
#60 0x00000000005644d0 in main (argc=2, argv=0x7fffffffd958) at emacs.c:1713
        stack_bottom_variable = 0x3e
        do_initial_setlocale = true
        dumping = false
        skip_args = 0
        no_loadup = false
        junk = 0x0
        dname_arg = 0x0
        ch_to_dir = 0x0
        original_pwd = 0x0
        disable_aslr = false
        rlim = {
          rlim_cur = 10022912, 
          rlim_max = 18446744073709551615
        }
        sockfd = -1

Lisp Backtrace:
"accept-process-output" (0xffff87a8)
"flyspell-word" (0xffff8e78)
"flyspell-post-command-hook" (0xffff9420)
"run-hooks" (0xffff95b8)
0x7f7ba90 PVEC_COMPILED
"apply" (0xffff9cb8)
"server-visit-files" (0xffffa168)
"server-execute" (0xffffa6d0)
0x938e940 PVEC_COMPILED
"server-execute-continuation" (0xffffb0e0)
"server-process-filter" (0xffffb988)
quit

  reply	other threads:[~2017-10-30  9:48 UTC|newest]

Thread overview: 151+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-24 18:52 wait_reading_process_ouput hangs in certain cases (w/ patches) Matthias Dahl
2017-10-25 14:53 ` Eli Zaretskii
2017-10-26 14:07   ` Matthias Dahl
2017-10-26 16:23     ` Eli Zaretskii
2017-10-26 18:56       ` Matthias Dahl
2017-10-28  8:20         ` Matthias Dahl
2017-10-28  9:28         ` Eli Zaretskii
2017-10-30  9:48           ` Matthias Dahl [this message]
2017-11-03  8:52             ` Matthias Dahl
2017-11-03  9:58               ` Eli Zaretskii
2017-11-04 12:11             ` Eli Zaretskii
2017-11-06 14:15               ` Matthias Dahl
2017-11-06 16:34                 ` Eli Zaretskii
2017-11-06 18:24                   ` Paul Eggert
2017-11-06 20:17                     ` Eli Zaretskii
2017-11-07 14:18                   ` Matthias Dahl
2017-11-07 16:40                     ` Eli Zaretskii
2017-11-10 14:45                       ` Matthias Dahl
2017-11-10 15:25                         ` Eli Zaretskii
2017-11-12 21:17                         ` Paul Eggert
2017-11-13  3:27                           ` Eli Zaretskii
2017-11-13  5:27                             ` Paul Eggert
2017-11-13 16:00                               ` Eli Zaretskii
2017-11-13 19:42                                 ` Paul Eggert
2017-11-13 20:12                                   ` Eli Zaretskii
2017-11-13 14:13                           ` Matthias Dahl
2017-11-13 16:10                             ` Eli Zaretskii
2017-11-14 15:05                               ` Matthias Dahl
2017-11-13 19:44                             ` Paul Eggert
2017-11-14 14:58                               ` Matthias Dahl
2017-11-14 15:24                                 ` Paul Eggert
2017-11-14 16:03                                   ` Eli Zaretskii
2017-11-14 16:23                                     ` Eli Zaretskii
2017-11-14 21:54                                       ` Paul Eggert
2017-11-15 14:03                                         ` Matthias Dahl
2017-11-16 15:37                                           ` Eli Zaretskii
2017-11-16 16:46                                           ` Paul Eggert
2017-11-18 14:24                                             ` Matthias Dahl
2017-11-18 14:51                                               ` Eli Zaretskii
2017-11-18 17:14                                                 ` Stefan Monnier
2017-11-19  7:07                                               ` Paul Eggert
2017-11-19 15:42                                                 ` Eli Zaretskii
2017-11-19 17:06                                                   ` Paul Eggert
2017-11-20 15:29                                                 ` Matthias Dahl
2017-11-21 14:44                                                   ` Matthias Dahl
2017-11-21 21:31                                                     ` Clément Pit-Claudel
2017-11-22 14:14                                                       ` Matthias Dahl
2017-11-22  8:55                                                     ` Paul Eggert
2017-11-22 14:33                                                       ` Matthias Dahl
2017-11-24  2:31                                                         ` Stefan Monnier
2017-12-28 17:52                                                         ` Eli Zaretskii
2017-12-04  9:40                                                       ` Matthias Dahl
2018-02-13 14:25                                                         ` Matthias Dahl
2018-02-13 16:56                                                           ` Paul Eggert
2018-02-16 16:01                                                           ` Eli Zaretskii
2018-02-16 16:09                                                             ` Lars Ingebrigtsen
2018-02-16 16:54                                                               ` Lars Ingebrigtsen
2018-02-22 11:45                                                               ` andres.ramirez
2018-02-26 14:39                                                                 ` Matthias Dahl
2018-02-26 15:11                                                                   ` andrés ramírez
2018-02-26 15:17                                                                     ` Lars Ingebrigtsen
2018-02-26 15:29                                                                       ` andrés ramírez
2018-02-26 16:52                                                                         ` Daniel Colascione
2018-02-26 17:19                                                                           ` andrés ramírez
2018-02-26 17:24                                                                             ` Daniel Colascione
2018-02-27  1:53                                                                               ` Re: andrés ramírez
2018-02-27  9:15                                                                       ` wait_reading_process_ouput hangs in certain cases (w/ patches) Matthias Dahl
2018-02-27 12:01                                                                         ` Lars Ingebrigtsen
2018-02-27  9:11                                                                     ` Matthias Dahl
2018-02-27 11:54                                                                       ` andrés ramírez
2018-02-27 15:02                                                                         ` Matthias Dahl
2018-02-27 15:13                                                                           ` Lars Ingebrigtsen
2018-02-27 15:17                                                                             ` Matthias Dahl
2018-02-27 15:19                                                                               ` Lars Ingebrigtsen
2018-02-27 15:14                                                                         ` Matthias Dahl
2018-02-27 15:17                                                                           ` Lars Ingebrigtsen
2018-03-01 10:42                                                                           ` Lars Ingebrigtsen
2018-03-01 14:36                                                                             ` Matthias Dahl
2018-03-01 15:10                                                                               ` andrés ramírez
2018-03-01 16:30                                                                                 ` T.V Raman
2018-03-01 16:46                                                                                   ` andrés ramírez
2018-03-01 18:23                                                                                     ` T.V Raman
2018-03-01 19:13                                                                                     ` Eli Zaretskii
2018-03-02 20:21                                                                                       ` andrés ramírez
2018-03-03  7:55                                                                                         ` Eli Zaretskii
2018-03-05 14:43                                                                             ` Matthias Dahl
2018-03-05 14:44                                                                               ` Lars Ingebrigtsen
2018-03-05 14:54                                                                                 ` Matthias Dahl
2018-03-13  9:54                                                                                 ` Matthias Dahl
2018-03-13 12:35                                                                                   ` Robert Pluim
2018-03-13 13:40                                                                                     ` Robert Pluim
2018-03-13 15:10                                                                                     ` Matthias Dahl
2018-03-13 15:30                                                                                       ` Robert Pluim
2018-03-13 15:36                                                                                       ` Dmitry Gutov
2018-03-13 15:46                                                                                         ` Robert Pluim
2018-03-13 15:56                                                                                           ` Dmitry Gutov
2018-03-13 16:57                                                                                             ` Robert Pluim
2018-03-13 18:03                                                                                               ` Eli Zaretskii
2018-03-13 20:12                                                                                                 ` Robert Pluim
2018-03-14 14:21                                                                                         ` Matthias Dahl
2018-03-13 16:32                                                                                       ` Lars Ingebrigtsen
2018-03-14  9:32                                                                                         ` Matthias Dahl
2018-03-14 14:55                                                                                           ` Lars Ingebrigtsen
2018-03-31 15:44                                                                                       ` Lars Ingebrigtsen
2018-04-01  2:05                                                                                         ` andrés ramírez
2018-06-08  5:11                                                                                         ` Leo Liu
2018-06-08  6:57                                                                                           ` Eli Zaretskii
2018-06-08  9:07                                                                                             ` Leo Liu
2018-03-13 16:12                                                                                   ` Eli Zaretskii
2018-03-14  4:16                                                                                     ` Leo Liu
2018-03-14  9:22                                                                                       ` Robert Pluim
2018-03-15  0:37                                                                                         ` Leo Liu
2018-03-14 15:09                                                                                       ` andrés ramírez
2018-03-14 16:45                                                                                       ` Eli Zaretskii
2018-03-15  1:03                                                                                         ` Leo Liu
2018-03-15  7:55                                                                                           ` Robert Pluim
2018-03-14 22:54                                                                                       ` Stefan Monnier
2018-03-15  1:06                                                                                         ` Leo Liu
2018-03-14  9:56                                                                                     ` Matthias Dahl
2018-03-14 12:24                                                                                       ` Stefan Monnier
2018-03-14 14:34                                                                                         ` Matthias Dahl
2018-03-14 22:52                                                                                           ` Stefan Monnier
2018-03-15 15:17                                                                                             ` Matthias Dahl
2018-03-14 16:43                                                                                       ` Eli Zaretskii
2018-03-15 14:59                                                                                         ` Matthias Dahl
2018-06-26 13:36                                                                                           ` Matthias Dahl
2018-06-26 14:09                                                                                             ` andrés ramírez
2018-06-27 13:10                                                                                               ` Matthias Dahl
2018-06-27 15:18                                                                                                 ` Eli Zaretskii
2018-06-28  8:01                                                                                                   ` Matthias Dahl
2018-06-28 13:04                                                                                                     ` Eli Zaretskii
2018-06-28 13:25                                                                                                       ` Matthias Dahl
2018-06-28 16:33                                                                                                         ` Leo Liu
2018-06-28 18:31                                                                                                           ` T.V Raman
2018-07-02 13:27                                                                                                             ` Matthias Dahl
2018-07-02 14:35                                                                                                               ` T.V Raman
2018-07-03 13:27                                                                                                                 ` Matthias Dahl
2018-07-03 13:52                                                                                                                   ` T. V. Raman
2018-07-03 15:03                                                                                                                     ` Stefan Monnier
2018-07-02 13:24                                                                                                           ` Matthias Dahl
2018-07-14  2:27                                                                                                             ` Leo Liu
2018-07-03 13:34                                                                                                       ` Matthias Dahl
2018-07-03 18:57                                                                                                         ` Eli Zaretskii
2018-07-04  7:35                                                                                                           ` Matthias Dahl
2018-07-04 15:11                                                                                                             ` Eli Zaretskii
2018-07-21  9:52                                                                                             ` Eli Zaretskii
2018-08-07  8:38                                                                                               ` Matthias Dahl
2018-08-07 17:10                                                                                                 ` Paul Eggert
2018-09-10  8:21                                                                                                 ` Eli Zaretskii
2017-11-07 17:23                     ` Stefan Monnier
2017-11-10 14:53                       ` Matthias Dahl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d078bdeb-2e1a-8941-9cc7-e557055cee5d@binary-island.eu \
    --to=ml_emacs-lists@binary-island.eu \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).