bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#13732: 24.3.50: X daemon font crash


From: Michael Mauger
Subject: bug#13732: 24.3.50: X daemon font crash
Date: Sat, 16 Feb 2013 19:45:27 -0800 (PST)

Place the following code in a file "bug.el"

------ 8< ---------------------------------------------------------- >8 ------
;; Potential GNU Emacs bug

(defun my-face-font (frame face font-name size)
  (let ((font (format "%s-%s" font-name size)))
    ;; The original goal was to set the faces across frames
    ;; the working version below sets the face font property per frame
    (if (eq face 'default)
        (set-frame-font font nil t)     ; change the FRAMES to nil and it 
doesn't crash
                                        ; but generates an error; the crash 
appears to
                                        ; be an Arithmetic exception
      (set-face-font face font))))

;; Replace the above with this below and it will work properly
;;
;; (defun my-face-font (frame face font-name size)
;;   (let ((font (format "%s-%s" font-name size)))
;;     (set-face-font face font frame)))

(defun my-frame-setup (frame)
  (when (display-graphic-p frame)
    (my-face-font frame 'default   "FreeMono" 10)
    (my-face-font frame 'mode-line "FreeSans" 10)))

(add-hook 'after-make-frame-functions 'my-frame-setup)
;; end bug.el
------ 8< ---------------------------------------------------------- >8 ------

Make sure tp set the fonts FreeMono and FreeSans identify fonts
available on your system.

At the sheel prompt, do the following:

  $ emacs -Q -l bug.el
  (Emacs frame pops open, default fonts are used)

  (With focus on the Emacs frame, type the following)
  C-x 5 2
  (A second frame, opens and the fonts are set as requested in both frames)

  M-x kill-emacs


To see the bug:

  $ emacs -Q -l bug.el --daemon
  Warning: due to a long standing Gtk+ bug
  http://bugzilla.gnome.org/show_bug.cgi?id=85715
  Emacs might crash when run in daemon mode and the X11 connection is 
unexpectedly lost.
  Using an Emacs configured with --with-x-toolkit=lucid does not have this 
problem.
  ("emacs" "-l" "user-lisp/bug.el")
  Starting Emacs daemon.
  (No frame appears, as expected)

  michael@michael-laptop:~$ emacsclient -c
  Waiting for Emacs...
  *ERROR*: Font not available: #<font-spec nil nil FreeSans nil nil nil nil nil 
10.0 nil nil nil ((:name . "FreeSans-10") (user-spec . "FreeSans-10"))>
  (No frame appears)

  michael@michael-laptop:~$ emacsclient -c
  Waiting for Emacs...
  (No frame appears)

  michael@michael-laptop:~$ ps -fCemacs
  UID        PID  PPID  C STIME TTY          TIME CMD
  (Emacs has died.)

Ther crash is caused by the set-frame-font call.  If the third parameter
FRAMES is nil or the identification of the font, the frame is still not
displayed and the error is repeated each time but it does not crash.




Program received signal SIGFPE, Arithmetic exception.
0x08258c3f in compute_fringe_widths (f=0x8552348, redraw=1) at fringe.c:1368
1368      int cols = (left_wid + right_wid + font_wid-1) / font_wid;
(gdb) bt full
#0  0x08258c3f in compute_fringe_widths (f=0x8552348, redraw=1)
    at fringe.c:1368
        left_wid = 8
        right_wid = 8
        font_wid = 0
        conf_wid = 16
        cols = 139751473
        real_wid = 28
        o_left = 10
        o_right = 11
        o_cols = 3
        left_fringe = 139100634
        right_fringe = 139100634
        left_fringe_width = 8
        right_fringe_width = 8
#1  0x08120e07 in x_new_font (f=0x8552348, font_object=146637309, fontset=16)
    at xterm.c:7905
        font = 0x8bd81f8
#2  0x080690fe in x_set_font (f=0x8552348, arg=139751345, oldval=139751473)
    at frame.c:3052
        font_object = 146637309
        fontset = 16
        font_param = 139100634
#3  0x08067f10 in x_set_frame_parameters (f=0x8552348, alist=139100634)
    at frame.c:2640
        param_index = 28
        old_value = 139751473
        prop = 139197794
        val = 146637309
        tail = 139100634
        width = 80
        height = 35
        left = 139100610
        top = 139100610
        icon_left = 139100610
        icon_top = 139100610
        parms = 0xbfa7ed40
        values = 0xbfa7ed20
        i = 1
        p = 0
        left_no_change = 0
        top_no_change = 0
        icon_left_no_change = 0
        icon_top_no_change = 0
        size_changed = 0
        gcpro1 = {
          next = 0x8bd81fd,
          var = 0x84a81da,
          nvars = 1
        }
        gcpro2 = {
          next = 0x8bd80c8,
          var = 0xbfa7edc8,
          nvars = 1
        }
#4  0x0806759d in Fmodify_frame_parameters (frame=139797325, alist=142600054)
    at frame.c:2200
        f = 0x8552348
        tail = 139100634
        prop = 139100634
        val = 139797325
#5  0x0810e1d2 in set_font_frame_param (frame=139797325, lface=139749653)
    at xfaces.c:3394
        f = 0x8552348
        font = 146637309
#6  0x0810dcef in Finternal_set_lisp_face_attribute (face=139122562,
    attr=139101042, value=4, frame=139797325) at xfaces.c:3208
        param = 139100634
        lface = 139749653
        old_value = 392
        prop_index = FONT_SIZE_INDEX
#7  0x081ddcd7 in Ffuncall (nargs=5, args=0xbfa7efc4) at eval.c:2686
        fun = 137009917
        original_fun = 139123018
        funcar = 139100610
        numargs = 4
        lisp_numargs = 0
        val = 4
        backtrace = {
          next = 0xbfa7f26c,
          function = 139123018,
          args = 0xbfa7efc8,
          nargs = 4,
          debug_on_exit = 0
        }
        internal_args = 0xbfa7efc8
        i = 139100610
#8  0x08219cc7 in exec_byte_code (bytestr=137275633, vector=137275653,
    maxdepth=24, args_template=139100634, nargs=0, args=0x0) at bytecode.c:898
        targets = {0x821c9dd, 0x821c9e9, 0x821c9eb, 0x821c9ed, 0x821c9ef,
          0x821c9ef, 0x821ca3a, 0x821ca97, 0x821971a, 0x821971c, 0x821971e,
          0x8219720, 0x8219722, 0x8219722, 0x8219728, 0x82196e5, 0x8219a67,
          0x8219a69, 0x8219a6b, 0x8219a6d, 0x8219a6f, 0x8219a6f, 0x8219aaa,
          0x8219a75, 0x8219bf7, 0x8219bf9, 0x8219bfb, 0x8219bfd, 0x8219bff,
          0x8219bff, 0x8219ba8, 0x8219bc2, 0x8219c9b, 0x8219c9d, 0x8219c9f,
          0x8219ca1, 0x8219ca3, 0x8219ca3, 0x8219c4c, 0x8219c66, 0x8219d44,
          0x8219d46, 0x8219d48, 0x8219d4a, 0x8219d4c, 0x8219d4c, 0x8219cf5,
          0x8219d0f, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821aa69, 0x821ab68, 0x821abaf,
          0x821abf6, 0x821ac3d, 0x8219952, 0x82199a2, 0x821ac92, 0x82198dc,
          0x82199f0, 0x821acda, 0x821ad2e, 0x821ad73, 0x821add8, 0x821ae1d,
          0x821aece, 0x821af09, 0x821af5d, 0x821afca, 0x821b005, 0x821b040,
          0x821b094, 0x821b0e8, 0x821b13c, 0x821b1a9, 0x821b1ee, 0x821b233,
          0x821b2e4, 0x821b35a, 0x821b3d0, 0x821b5c8, 0x821b61c, 0x821b670,
          0x821b6c4, 0x821b718, 0x821b75d, 0x821b7d7, 0x821b81c, 0x821b861,
          0x821b8a6, 0x821b984, 0x821a78d, 0x821b9d0, 0x821ba0b, 0x821bab8,
          0x821bb04, 0x821bb50, 0x821bb8b, 0x821bbce, 0x821bc11, 0x821bc57,
          0x821c9dd, 0x821bc9c, 0x821bcd3, 0x821bd0a, 0x821bd41, 0x821bd78,
          0x821bdaf, 0x821a78d, 0x821c9dd, 0x821bdea, 0x821be30, 0x821be6b,
          0x821bea6, 0x821befa, 0x821bf4e, 0x821bf89, 0x821c16d, 0x821c1c1,
          0x821c215, 0x821c269, 0x821c2a0, 0x821c9dd, 0x821a6e2, 0x8219de0,
          0x82197d5, 0x8219ecd, 0x8219fd4, 0x821a0d9, 0x821a678, 0x821a6b5,
          0x8219b6b, 0x821a74f, 0x821a7bb, 0x821a83b, 0x821a879, 0x821a8d5,
          0x821a917, 0x821a984, 0x821a9ee, 0x8219da3, 0x821c2db, 0x821c348,
          0x821c383, 0x821c3be, 0x821c3f9, 0x821c434, 0x821c488, 0x821c4dc,
          0x821c530, 0x821c584, 0x821c6c1, 0x821c715, 0x821c769, 0x821c7a4,
          0x821c7f8, 0x821c84c, 0x821c8a5, 0x821c8ff, 0x821b8eb, 0x821b930,
          0x821c944, 0x821c997, 0x821c9dd, 0x821a1de, 0x821a2a4, 0x821a399,
          0x821a494, 0x821a586, 0x821ae62, 0x821b278, 0x821ba4c, 0x821cb12,
          0x821cb6f, 0x821c9dd, 0x821c9dd, 0x821cbea, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821cc58 <repeats 64 times>}
        count = 40
        op = 4
        vectorp = 0x82ea904
        stack = {
          pc = 0x841fd35 "\210\b\211\036\031AA)\211\020\204\251",
          byte_string = 137275633,
          byte_string_start = 0x841fc75 "\306\b!\020\t\204\f",
          constants = 137275653,
          next = 0xbfa7f474
        }
        top = 0xbfa7efc4
        result = 142594174
#9  0x081de588 in funcall_lambda (fun=137275597, nargs=14,
    arg_vector=0x84a81da) at eval.c:2907
        val = -1079512552
        syms_left = 139100634
        next = 139192594
        lexenv = 139100634
        count = 37
        i = 14
        optional = false
        rest = true
#10 0x081dde7e in Ffuncall (nargs=15, args=0xbfa7f2d0) at eval.c:2724
        fun = 137275597
        original_fun = 140973410
        funcar = 139100634
        numargs = 14
        lisp_numargs = 139100634
        val = 139101378
        backtrace = {
          next = 0xbfa7f3cc,
          function = 140973410,
          args = 0xbfa7f2d4,
          nargs = 14,
          debug_on_exit = 0
        }
        internal_args = 0xbfa7f2d0
        i = 139100634
#11 0x081dd345 in Fapply (nargs=4, args=0xbfa7f438) at eval.c:2209
        i = 15
        numargs = 14
        spread_arg = 139100634
        funcall_args = 0xbfa7f2d0
        fun = 137275597
        retval = 35
        gcpro1 = {
          next = 0x0,
          var = 0x0,
          nvars = 15
        }
        sa_count = 37
        sa_must_free = false
#12 0x081ddb86 in Ffuncall (nargs=5, args=0xbfa7f434) at eval.c:2656
        fun = 138733421
        original_fun = 139173090
        funcar = 142594350
        numargs = 4
        lisp_numargs = -1079512040
        val = 142594350
        backtrace = {
          next = 0xbfa7f6dc,
          function = 139173090,
          args = 0xbfa7f438,
          nargs = 4,
          debug_on_exit = 0
        }
        internal_args = 0x260
        i = 139100610
#13 0x08219cc7 in exec_byte_code (bytestr=137284793, vector=137284813,
    maxdepth=24, args_template=139100634, nargs=0, args=0x0) at bytecode.c:898
        targets = {0x821c9dd, 0x821c9e9, 0x821c9eb, 0x821c9ed, 0x821c9ef,
          0x821c9ef, 0x821ca3a, 0x821ca97, 0x821971a, 0x821971c, 0x821971e,
          0x8219720, 0x8219722, 0x8219722, 0x8219728, 0x82196e5, 0x8219a67,
          0x8219a69, 0x8219a6b, 0x8219a6d, 0x8219a6f, 0x8219a6f, 0x8219aaa,
          0x8219a75, 0x8219bf7, 0x8219bf9, 0x8219bfb, 0x8219bfd, 0x8219bff,
          0x8219bff, 0x8219ba8, 0x8219bc2, 0x8219c9b, 0x8219c9d, 0x8219c9f,
          0x8219ca1, 0x8219ca3, 0x8219ca3, 0x8219c4c, 0x8219c66, 0x8219d44,
          0x8219d46, 0x8219d48, 0x8219d4a, 0x8219d4c, 0x8219d4c, 0x8219cf5,
          0x8219d0f, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821aa69, 0x821ab68, 0x821abaf,
          0x821abf6, 0x821ac3d, 0x8219952, 0x82199a2, 0x821ac92, 0x82198dc,
          0x82199f0, 0x821acda, 0x821ad2e, 0x821ad73, 0x821add8, 0x821ae1d,
          0x821aece, 0x821af09, 0x821af5d, 0x821afca, 0x821b005, 0x821b040,
          0x821b094, 0x821b0e8, 0x821b13c, 0x821b1a9, 0x821b1ee, 0x821b233,
          0x821b2e4, 0x821b35a, 0x821b3d0, 0x821b5c8, 0x821b61c, 0x821b670,
          0x821b6c4, 0x821b718, 0x821b75d, 0x821b7d7, 0x821b81c, 0x821b861,
          0x821b8a6, 0x821b984, 0x821a78d, 0x821b9d0, 0x821ba0b, 0x821bab8,
          0x821bb04, 0x821bb50, 0x821bb8b, 0x821bbce, 0x821bc11, 0x821bc57,
          0x821c9dd, 0x821bc9c, 0x821bcd3, 0x821bd0a, 0x821bd41, 0x821bd78,
          0x821bdaf, 0x821a78d, 0x821c9dd, 0x821bdea, 0x821be30, 0x821be6b,
          0x821bea6, 0x821befa, 0x821bf4e, 0x821bf89, 0x821c16d, 0x821c1c1,
          0x821c215, 0x821c269, 0x821c2a0, 0x821c9dd, 0x821a6e2, 0x8219de0,
          0x82197d5, 0x8219ecd, 0x8219fd4, 0x821a0d9, 0x821a678, 0x821a6b5,
          0x8219b6b, 0x821a74f, 0x821a7bb, 0x821a83b, 0x821a879, 0x821a8d5,
          0x821a917, 0x821a984, 0x821a9ee, 0x8219da3, 0x821c2db, 0x821c348,
          0x821c383, 0x821c3be, 0x821c3f9, 0x821c434, 0x821c488, 0x821c4dc,
          0x821c530, 0x821c584, 0x821c6c1, 0x821c715, 0x821c769, 0x821c7a4,
          0x821c7f8, 0x821c84c, 0x821c8a5, 0x821c8ff, 0x821b8eb, 0x821b930,
          0x821c944, 0x821c997, 0x821c9dd, 0x821a1de, 0x821a2a4, 0x821a399,
          0x821a494, 0x821a586, 0x821ae62, 0x821b278, 0x821ba4c, 0x821cb12,
          0x821cb6f, 0x821c9dd, 0x821c9dd, 0x821cbea, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821cc58 <repeats 64 times>}
        count = 35
        op = 4
        vectorp = 0x82ecccc
        stack = {
          pc = 0x841e853 "*\207",
          byte_string = 137284793,
          byte_string_start = 0x841e821 "\306\b\t\"\030\307\032\b\203+",
          constants = 137284813,
          next = 0xbfa7f784
        }
        top = 0xbfa7f434
        result = 139100634
#14 0x081de588 in funcall_lambda (fun=137284757, nargs=3, arg_vector=0x84a81da)
    at eval.c:2907
        val = 139100634
        syms_left = 139100634
        next = 140769714
        lexenv = 139100634
        count = 32
        i = 3
        optional = false
        rest = false
#15 0x081dde7e in Ffuncall (nargs=4, args=0xbfa7f744) at eval.c:2724
        fun = 137284757
        original_fun = 141224778
        funcar = 139100610
        numargs = 3
        lisp_numargs = 0
        val = 0
        backtrace = {
          next = 0xbfa7f9ec,
          function = 141224778,
          args = 0xbfa7f748,
          nargs = 3,
          debug_on_exit = 0
        }
        internal_args = 0x210
        i = 139100610
#16 0x08219cc7 in exec_byte_code (bytestr=137284673, vector=137284693,
    maxdepth=24, args_template=139100634, nargs=0, args=0x0) at bytecode.c:898
        targets = {0x821c9dd, 0x821c9e9, 0x821c9eb, 0x821c9ed, 0x821c9ef,
          0x821c9ef, 0x821ca3a, 0x821ca97, 0x821971a, 0x821971c, 0x821971e,
          0x8219720, 0x8219722, 0x8219722, 0x8219728, 0x82196e5, 0x8219a67,
          0x8219a69, 0x8219a6b, 0x8219a6d, 0x8219a6f, 0x8219a6f, 0x8219aaa,
          0x8219a75, 0x8219bf7, 0x8219bf9, 0x8219bfb, 0x8219bfd, 0x8219bff,
          0x8219bff, 0x8219ba8, 0x8219bc2, 0x8219c9b, 0x8219c9d, 0x8219c9f,
          0x8219ca1, 0x8219ca3, 0x8219ca3, 0x8219c4c, 0x8219c66, 0x8219d44,
          0x8219d46, 0x8219d48, 0x8219d4a, 0x8219d4c, 0x8219d4c, 0x8219cf5,
          0x8219d0f, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821aa69, 0x821ab68, 0x821abaf,
          0x821abf6, 0x821ac3d, 0x8219952, 0x82199a2, 0x821ac92, 0x82198dc,
          0x82199f0, 0x821acda, 0x821ad2e, 0x821ad73, 0x821add8, 0x821ae1d,
          0x821aece, 0x821af09, 0x821af5d, 0x821afca, 0x821b005, 0x821b040,
          0x821b094, 0x821b0e8, 0x821b13c, 0x821b1a9, 0x821b1ee, 0x821b233,
          0x821b2e4, 0x821b35a, 0x821b3d0, 0x821b5c8, 0x821b61c, 0x821b670,
          0x821b6c4, 0x821b718, 0x821b75d, 0x821b7d7, 0x821b81c, 0x821b861,
          0x821b8a6, 0x821b984, 0x821a78d, 0x821b9d0, 0x821ba0b, 0x821bab8,
          0x821bb04, 0x821bb50, 0x821bb8b, 0x821bbce, 0x821bc11, 0x821bc57,
          0x821c9dd, 0x821bc9c, 0x821bcd3, 0x821bd0a, 0x821bd41, 0x821bd78,
          0x821bdaf, 0x821a78d, 0x821c9dd, 0x821bdea, 0x821be30, 0x821be6b,
          0x821bea6, 0x821befa, 0x821bf4e, 0x821bf89, 0x821c16d, 0x821c1c1,
          0x821c215, 0x821c269, 0x821c2a0, 0x821c9dd, 0x821a6e2, 0x8219de0,
          0x82197d5, 0x8219ecd, 0x8219fd4, 0x821a0d9, 0x821a678, 0x821a6b5,
          0x8219b6b, 0x821a74f, 0x821a7bb, 0x821a83b, 0x821a879, 0x821a8d5,
          0x821a917, 0x821a984, 0x821a9ee, 0x8219da3, 0x821c2db, 0x821c348,
          0x821c383, 0x821c3be, 0x821c3f9, 0x821c434, 0x821c488, 0x821c4dc,
          0x821c530, 0x821c584, 0x821c6c1, 0x821c715, 0x821c769, 0x821c7a4,
          0x821c7f8, 0x821c84c, 0x821c8a5, 0x821c8ff, 0x821b8eb, 0x821b930,
          0x821c944, 0x821c997, 0x821c9dd, 0x821a1de, 0x821a2a4, 0x821a399,
          0x821a494, 0x821a586, 0x821ae62, 0x821b278, 0x821ba4c, 0x821cb12,
          0x821cb6f, 0x821c9dd, 0x821c9dd, 0x821cbea, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821cc58 <repeats 64 times>}
        count = 29
        op = 3
        vectorp = 0x82ecc54
        stack = {
          pc = 0x841e888 "\210\fA\211\024\204%",
          byte_string = 137284673,
          byte_string_start = 0x841e856 "\b\306N\203\016",
          constants = 137284693,
          next = 0xbfa7fa84
        }
        top = 0xbfa7f744
        result = 143230472
#17 0x081de588 in funcall_lambda (fun=137284653, nargs=2, arg_vector=0x84a81da)
    at eval.c:2907
        val = -1079510328
        syms_left = 139100634
        next = 139135562
        lexenv = 139100634
        count = 27
        i = 2
        optional = false
        rest = false
#18 0x081dde7e in Ffuncall (nargs=3, args=0xbfa7fa54) at eval.c:2724
        fun = 137284653
        original_fun = 140929554
        funcar = 141216410
        numargs = 2
        lisp_numargs = 139133786
        val = 140865250
        backtrace = {
          next = 0xbfa7fcd8,
          function = 140929554,
          args = 0xbfa7fa58,
          nargs = 2,
          debug_on_exit = 0
        }
        internal_args = 0x8219353
        i = 140871226
#19 0x08219cc7 in exec_byte_code (bytestr=137287865, vector=137287893,
    maxdepth=12, args_template=139100634, nargs=0, args=0x0) at bytecode.c:898
        targets = {0x821c9dd, 0x821c9e9, 0x821c9eb, 0x821c9ed, 0x821c9ef,
          0x821c9ef, 0x821ca3a, 0x821ca97, 0x821971a, 0x821971c, 0x821971e,
          0x8219720, 0x8219722, 0x8219722, 0x8219728, 0x82196e5, 0x8219a67,
          0x8219a69, 0x8219a6b, 0x8219a6d, 0x8219a6f, 0x8219a6f, 0x8219aaa,
          0x8219a75, 0x8219bf7, 0x8219bf9, 0x8219bfb, 0x8219bfd, 0x8219bff,
          0x8219bff, 0x8219ba8, 0x8219bc2, 0x8219c9b, 0x8219c9d, 0x8219c9f,
          0x8219ca1, 0x8219ca3, 0x8219ca3, 0x8219c4c, 0x8219c66, 0x8219d44,
          0x8219d46, 0x8219d48, 0x8219d4a, 0x8219d4c, 0x8219d4c, 0x8219cf5,
          0x8219d0f, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821aa69, 0x821ab68, 0x821abaf,
          0x821abf6, 0x821ac3d, 0x8219952, 0x82199a2, 0x821ac92, 0x82198dc,
          0x82199f0, 0x821acda, 0x821ad2e, 0x821ad73, 0x821add8, 0x821ae1d,
          0x821aece, 0x821af09, 0x821af5d, 0x821afca, 0x821b005, 0x821b040,
          0x821b094, 0x821b0e8, 0x821b13c, 0x821b1a9, 0x821b1ee, 0x821b233,
          0x821b2e4, 0x821b35a, 0x821b3d0, 0x821b5c8, 0x821b61c, 0x821b670,
          0x821b6c4, 0x821b718, 0x821b75d, 0x821b7d7, 0x821b81c, 0x821b861,
          0x821b8a6, 0x821b984, 0x821a78d, 0x821b9d0, 0x821ba0b, 0x821bab8,
          0x821bb04, 0x821bb50, 0x821bb8b, 0x821bbce, 0x821bc11, 0x821bc57,
          0x821c9dd, 0x821bc9c, 0x821bcd3, 0x821bd0a, 0x821bd41, 0x821bd78,
          0x821bdaf, 0x821a78d, 0x821c9dd, 0x821bdea, 0x821be30, 0x821be6b,
          0x821bea6, 0x821befa, 0x821bf4e, 0x821bf89, 0x821c16d, 0x821c1c1,
          0x821c215, 0x821c269, 0x821c2a0, 0x821c9dd, 0x821a6e2, 0x8219de0,
          0x82197d5, 0x8219ecd, 0x8219fd4, 0x821a0d9, 0x821a678, 0x821a6b5,
          0x8219b6b, 0x821a74f, 0x821a7bb, 0x821a83b, 0x821a879, 0x821a8d5,
          0x821a917, 0x821a984, 0x821a9ee, 0x8219da3, 0x821c2db, 0x821c348,
          0x821c383, 0x821c3be, 0x821c3f9, 0x821c434, 0x821c488, 0x821c4dc,
          0x821c530, 0x821c584, 0x821c6c1, 0x821c715, 0x821c769, 0x821c7a4,
          0x821c7f8, 0x821c84c, 0x821c8a5, 0x821c8ff, 0x821b8eb, 0x821b930,
          0x821c944, 0x821c997, 0x821c9dd, 0x821a1de, 0x821a2a4, 0x821a399,
          0x821a494, 0x821a586, 0x821ae62, 0x821b278, 0x821ba4c, 0x821cb12,
          0x821cb6f, 0x821c9dd, 0x821c9dd, 0x821cbea, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821cc58 <repeats 64 times>}
        count = 27
        op = 2
        vectorp = 0x82ed8d4
        stack = {
          pc = 0x841e0b9 "\210\b\304=\204\024",
          byte_string = 137287865,
          byte_string_start = 0x841e0b5 "\303\b\t\"\210\b\304=\204\024",
          constants = 137287893,
          next = 0xbfa7fed4
        }
        top = 0xbfa7fa54
        result = 137285694
#20 0x0821938b in Fbyte_code (bytestr=137287865, vector=137287893, maxdepth=12)
    at bytecode.c:473
No locals.
#21 0x081dcb8f in eval_sub (form=137287854) at eval.c:2046
        numargs = 12
        args_left = 139100634
        i = 136418131
        maxargs = 3
        argvals = {137287865, 137287893, 12, 139197314, 0, 0, 139100634,
          134651897}
        fun = 138738173
        val = 2
        original_fun = 139178570
        original_args = 137287862
        funcar = 1
        backtrace = {
          next = 0xbfa8013c,
          function = 139178570,
          args = 0xbfa7fcb8,
          nargs = 3,
          debug_on_exit = 0
        }
        gcpro1 = {
          next = 0xbfa7fd64,
          var = 0x2,
          nvars = 0
        }
        gcpro2 = {
          next = 0x73726576,
          var = 0x2,
          nvars = 139137090
        }
        gcpro3 = {
          next = 0x8552348,
          var = 0xbfa7fcb8,
          nvars = 3
        }
#22 0x081db42b in internal_lisp_condition_case (var=139100634,
    bodyform=137287854, handlers=137086222) at eval.c:1147
        val = 139100634
        c = {
          tag = 139100634,
          val = 139100634,
          next = 0xbfa8129c,
          gcpro = 0x0,
          jmp = {{
              __jmpbuf = {139100634, 139100634, 142918706, -1079509384,
                -365983801, -1632483672},
              __mask_was_saved = 0,
              __saved_mask = {
                __val = {142594606, 64218, 139100634, 139100634, 3215457912,
                  136175230, 137270725, 0, 3215457944, 1090309296, 143293296,
                  142887136, 858993459, 1071854387, 143267656, 4, 3215457880,
                  136088192, 0, 1091043304, 2, 2, 2, 3215457944, 2,
                  3215457940, 0, 139100658, 3215457864, 3215458620, 141245018,
                  3215457944}
              }
            }},
          backlist = 0xbfa8013c,
          handlerlist = 0xbfa81364,
          lisp_eval_depth = 10,
          pdlcount = 27,
          poll_suppress_count = 1,
          interrupt_input_blocked = 0,
          byte_stack = 0xbfa7fed4
        }
        h = {
          handler = 137086222,
          var = 139100634,
          chosen_clause = -789355264,
          tag = 0xbfa7fd8c,
          next = 0xbfa81364
        }
#23 0x0821a956 in exec_byte_code (bytestr=137287753, vector=137287773,
    maxdepth=24, args_template=139100634, nargs=0, args=0x0) at bytecode.c:1094
        handlers = 137086222
        body = 137287854
        targets = {0x821c9dd, 0x821c9e9, 0x821c9eb, 0x821c9ed, 0x821c9ef,
          0x821c9ef, 0x821ca3a, 0x821ca97, 0x821971a, 0x821971c, 0x821971e,
          0x8219720, 0x8219722, 0x8219722, 0x8219728, 0x82196e5, 0x8219a67,
          0x8219a69, 0x8219a6b, 0x8219a6d, 0x8219a6f, 0x8219a6f, 0x8219aaa,
          0x8219a75, 0x8219bf7, 0x8219bf9, 0x8219bfb, 0x8219bfd, 0x8219bff,
          0x8219bff, 0x8219ba8, 0x8219bc2, 0x8219c9b, 0x8219c9d, 0x8219c9f,
          0x8219ca1, 0x8219ca3, 0x8219ca3, 0x8219c4c, 0x8219c66, 0x8219d44,
          0x8219d46, 0x8219d48, 0x8219d4a, 0x8219d4c, 0x8219d4c, 0x8219cf5,
          0x8219d0f, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821aa69, 0x821ab68, 0x821abaf,
          0x821abf6, 0x821ac3d, 0x8219952, 0x82199a2, 0x821ac92, 0x82198dc,
          0x82199f0, 0x821acda, 0x821ad2e, 0x821ad73, 0x821add8, 0x821ae1d,
          0x821aece, 0x821af09, 0x821af5d, 0x821afca, 0x821b005, 0x821b040,
          0x821b094, 0x821b0e8, 0x821b13c, 0x821b1a9, 0x821b1ee, 0x821b233,
          0x821b2e4, 0x821b35a, 0x821b3d0, 0x821b5c8, 0x821b61c, 0x821b670,
          0x821b6c4, 0x821b718, 0x821b75d, 0x821b7d7, 0x821b81c, 0x821b861,
          0x821b8a6, 0x821b984, 0x821a78d, 0x821b9d0, 0x821ba0b, 0x821bab8,
          0x821bb04, 0x821bb50, 0x821bb8b, 0x821bbce, 0x821bc11, 0x821bc57,
          0x821c9dd, 0x821bc9c, 0x821bcd3, 0x821bd0a, 0x821bd41, 0x821bd78,
          0x821bdaf, 0x821a78d, 0x821c9dd, 0x821bdea, 0x821be30, 0x821be6b,
          0x821bea6, 0x821befa, 0x821bf4e, 0x821bf89, 0x821c16d, 0x821c1c1,
          0x821c215, 0x821c269, 0x821c2a0, 0x821c9dd, 0x821a6e2, 0x8219de0,
          0x82197d5, 0x8219ecd, 0x8219fd4, 0x821a0d9, 0x821a678, 0x821a6b5,
          0x8219b6b, 0x821a74f, 0x821a7bb, 0x821a83b, 0x821a879, 0x821a8d5,
          0x821a917, 0x821a984, 0x821a9ee, 0x8219da3, 0x821c2db, 0x821c348,
          0x821c383, 0x821c3be, 0x821c3f9, 0x821c434, 0x821c488, 0x821c4dc,
          0x821c530, 0x821c584, 0x821c6c1, 0x821c715, 0x821c769, 0x821c7a4,
          0x821c7f8, 0x821c84c, 0x821c8a5, 0x821c8ff, 0x821b8eb, 0x821b930,
          0x821c944, 0x821c997, 0x821c9dd, 0x821a1de, 0x821a2a4, 0x821a399,
          0x821a494, 0x821a586, 0x821ae62, 0x821b278, 0x821ba4c, 0x821cb12,
          0x821cb6f, 0x821c9dd, 0x821c9dd, 0x821cbea, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821cc58 <repeats 64 times>}
        count = 24
        op = 143
        vectorp = 0x82ed85c
        stack = {
          pc = 0x841e0e6 "\210\vA\211\023\204\020",
          byte_string = 137287753,
          byte_string_start = 0x841e0cf "\306\b!\307>\031\310 
\237\311\032\211\033\203\037",
          constants = 137287773,
          next = 0xbfa801e4
        }
        top = 0xbfa7fe94
        result = 139100634
#24 0x081de588 in funcall_lambda (fun=137287725, nargs=2, arg_vector=0x84a81da)
    at eval.c:2907
        val = 139100634
        syms_left = 139100634
        next = 140978650
        lexenv = 139100634
        count = 22
        i = 2
        optional = true
        rest = false
#25 0x081dde7e in Ffuncall (nargs=3, args=0xbfa801a4) at eval.c:2724
        fun = 137287725
        original_fun = 139197458
        funcar = 139100610
        numargs = 2
        lisp_numargs = 0
        val = 139100634
        backtrace = {
          next = 0xbfa8044c,
          function = 139197458,
          args = 0xbfa801a8,
          nargs = 2,
          debug_on_exit = 0
        }
        internal_args = 0x170
        i = 139100610
#26 0x08219cc7 in exec_byte_code (bytestr=137287409, vector=137287429,
    maxdepth=16, args_template=139100634, nargs=0, args=0x0) at bytecode.c:898
        targets = {0x821c9dd, 0x821c9e9, 0x821c9eb, 0x821c9ed, 0x821c9ef,
          0x821c9ef, 0x821ca3a, 0x821ca97, 0x821971a, 0x821971c, 0x821971e,
          0x8219720, 0x8219722, 0x8219722, 0x8219728, 0x82196e5, 0x8219a67,
          0x8219a69, 0x8219a6b, 0x8219a6d, 0x8219a6f, 0x8219a6f, 0x8219aaa,
          0x8219a75, 0x8219bf7, 0x8219bf9, 0x8219bfb, 0x8219bfd, 0x8219bff,
          0x8219bff, 0x8219ba8, 0x8219bc2, 0x8219c9b, 0x8219c9d, 0x8219c9f,
          0x8219ca1, 0x8219ca3, 0x8219ca3, 0x8219c4c, 0x8219c66, 0x8219d44,
          0x8219d46, 0x8219d48, 0x8219d4a, 0x8219d4c, 0x8219d4c, 0x8219cf5,
          0x8219d0f, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821aa69, 0x821ab68, 0x821abaf,
          0x821abf6, 0x821ac3d, 0x8219952, 0x82199a2, 0x821ac92, 0x82198dc,
          0x82199f0, 0x821acda, 0x821ad2e, 0x821ad73, 0x821add8, 0x821ae1d,
          0x821aece, 0x821af09, 0x821af5d, 0x821afca, 0x821b005, 0x821b040,
          0x821b094, 0x821b0e8, 0x821b13c, 0x821b1a9, 0x821b1ee, 0x821b233,
          0x821b2e4, 0x821b35a, 0x821b3d0, 0x821b5c8, 0x821b61c, 0x821b670,
          0x821b6c4, 0x821b718, 0x821b75d, 0x821b7d7, 0x821b81c, 0x821b861,
          0x821b8a6, 0x821b984, 0x821a78d, 0x821b9d0, 0x821ba0b, 0x821bab8,
          0x821bb04, 0x821bb50, 0x821bb8b, 0x821bbce, 0x821bc11, 0x821bc57,
          0x821c9dd, 0x821bc9c, 0x821bcd3, 0x821bd0a, 0x821bd41, 0x821bd78,
          0x821bdaf, 0x821a78d, 0x821c9dd, 0x821bdea, 0x821be30, 0x821be6b,
          0x821bea6, 0x821befa, 0x821bf4e, 0x821bf89, 0x821c16d, 0x821c1c1,
          0x821c215, 0x821c269, 0x821c2a0, 0x821c9dd, 0x821a6e2, 0x8219de0,
          0x82197d5, 0x8219ecd, 0x8219fd4, 0x821a0d9, 0x821a678, 0x821a6b5,
          0x8219b6b, 0x821a74f, 0x821a7bb, 0x821a83b, 0x821a879, 0x821a8d5,
          0x821a917, 0x821a984, 0x821a9ee, 0x8219da3, 0x821c2db, 0x821c348,
          0x821c383, 0x821c3be, 0x821c3f9, 0x821c434, 0x821c488, 0x821c4dc,
          0x821c530, 0x821c584, 0x821c6c1, 0x821c715, 0x821c769, 0x821c7a4,
          0x821c7f8, 0x821c84c, 0x821c8a5, 0x821c8ff, 0x821b8eb, 0x821b930,
          0x821c944, 0x821c997, 0x821c9dd, 0x821a1de, 0x821a2a4, 0x821a399,
          0x821a494, 0x821a586, 0x821ae62, 0x821b278, 0x821ba4c, 0x821cb12,
          0x821cb6f, 0x821c9dd, 0x821c9dd, 0x821cbea, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821cc58 <repeats 64 times>}
        count = 16
        op = 2
        vectorp = 0x82ed704
        stack = {
          pc = 0x841e1a0 "\210\n\204W",
          byte_string = 137287409,
          byte_string_start = 0x841e155 
"\306\b!\020\307\b!\031\310\b\236\032\311\033ʉ\034\035\v\312\036\026\211\036\027\203\060",
          constants = 137287429,
          next = 0xbfa804f4
        }
        top = 0xbfa801a4
        result = 139197146
#27 0x081de588 in funcall_lambda (fun=137287381, nargs=1, arg_vector=0x84a81da)
    at eval.c:2907
        val = 1
        syms_left = 139100634
        next = 140978650
        lexenv = 139100634
        count = 15
        i = 1
        optional = true
        rest = false
#28 0x081dde7e in Ffuncall (nargs=2, args=0xbfa804b4) at eval.c:2724
        fun = 137287381
        original_fun = 141193058
        funcar = 139100610
        numargs = 1
        lisp_numargs = 0
        val = 139100634
        backtrace = {
          next = 0xbfa8075c,
          function = 141193058,
          args = 0xbfa804b8,
          nargs = 1,
          debug_on_exit = 0
        }
        internal_args = 0x110
        i = 139100610
#29 0x08219cc7 in exec_byte_code (bytestr=137602185, vector=137602205,
    maxdepth=20, args_template=139100634, nargs=0, args=0x0) at bytecode.c:898
        targets = {0x821c9dd, 0x821c9e9, 0x821c9eb, 0x821c9ed, 0x821c9ef,
          0x821c9ef, 0x821ca3a, 0x821ca97, 0x821971a, 0x821971c, 0x821971e,
          0x8219720, 0x8219722, 0x8219722, 0x8219728, 0x82196e5, 0x8219a67,
          0x8219a69, 0x8219a6b, 0x8219a6d, 0x8219a6f, 0x8219a6f, 0x8219aaa,
          0x8219a75, 0x8219bf7, 0x8219bf9, 0x8219bfb, 0x8219bfd, 0x8219bff,
          0x8219bff, 0x8219ba8, 0x8219bc2, 0x8219c9b, 0x8219c9d, 0x8219c9f,
          0x8219ca1, 0x8219ca3, 0x8219ca3, 0x8219c4c, 0x8219c66, 0x8219d44,
          0x8219d46, 0x8219d48, 0x8219d4a, 0x8219d4c, 0x8219d4c, 0x8219cf5,
          0x8219d0f, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821aa69, 0x821ab68, 0x821abaf,
          0x821abf6, 0x821ac3d, 0x8219952, 0x82199a2, 0x821ac92, 0x82198dc,
          0x82199f0, 0x821acda, 0x821ad2e, 0x821ad73, 0x821add8, 0x821ae1d,
          0x821aece, 0x821af09, 0x821af5d, 0x821afca, 0x821b005, 0x821b040,
          0x821b094, 0x821b0e8, 0x821b13c, 0x821b1a9, 0x821b1ee, 0x821b233,
          0x821b2e4, 0x821b35a, 0x821b3d0, 0x821b5c8, 0x821b61c, 0x821b670,
          0x821b6c4, 0x821b718, 0x821b75d, 0x821b7d7, 0x821b81c, 0x821b861,
          0x821b8a6, 0x821b984, 0x821a78d, 0x821b9d0, 0x821ba0b, 0x821bab8,
          0x821bb04, 0x821bb50, 0x821bb8b, 0x821bbce, 0x821bc11, 0x821bc57,
          0x821c9dd, 0x821bc9c, 0x821bcd3, 0x821bd0a, 0x821bd41, 0x821bd78,
          0x821bdaf, 0x821a78d, 0x821c9dd, 0x821bdea, 0x821be30, 0x821be6b,
          0x821bea6, 0x821befa, 0x821bf4e, 0x821bf89, 0x821c16d, 0x821c1c1,
          0x821c215, 0x821c269, 0x821c2a0, 0x821c9dd, 0x821a6e2, 0x8219de0,
          0x82197d5, 0x8219ecd, 0x8219fd4, 0x821a0d9, 0x821a678, 0x821a6b5,
          0x8219b6b, 0x821a74f, 0x821a7bb, 0x821a83b, 0x821a879, 0x821a8d5,
          0x821a917, 0x821a984, 0x821a9ee, 0x8219da3, 0x821c2db, 0x821c348,
          0x821c383, 0x821c3be, 0x821c3f9, 0x821c434, 0x821c488, 0x821c4dc,
          0x821c530, 0x821c584, 0x821c6c1, 0x821c715, 0x821c769, 0x821c7a4,
          0x821c7f8, 0x821c84c, 0x821c8a5, 0x821c8ff, 0x821b8eb, 0x821b930,
          0x821c944, 0x821c997, 0x821c9dd, 0x821a1de, 0x821a2a4, 0x821a399,
          0x821a494, 0x821a586, 0x821ae62, 0x821b278, 0x821ba4c, 0x821cb12,
          0x821cb6f, 0x821c9dd, 0x821c9dd, 0x821cbea, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821cc58 <repeats 64 times>}
        count = 9
        op = 1
        vectorp = 0x833a49c
        stack = {
          pc = 0x83e0fac "\026\034\324\016\034!\210\016#\311\036$\211\036!\203 
\001\016!@\211\026$\b\236\204\027\001\325\016\032\016$\"\211\036%\203\026\001\326\016\034\016$\016%#\210)\016!A\211\026!\204",
 <incomplete sequence \366>,
          byte_string = 137602185,
          byte_string_start = 0x83e0ec8 "\301\b\236A\031\306\b\236\203\061",
          constants = 137602205,
          next = 0xbfa807f4
        }
        top = 0xbfa804b4
        result = 272
#30 0x081de588 in funcall_lambda (fun=137602157, nargs=1, arg_vector=0x84a81da)
    at eval.c:2907
        val = 139100634
        syms_left = 139100634
        next = 140978650
        lexenv = 139100634
        count = 8
        i = 1
        optional = true
        rest = false
#31 0x081dde7e in Ffuncall (nargs=2, args=0xbfa807c4) at eval.c:2724
        fun = 137602157
        original_fun = 141197578
        funcar = 0
        numargs = 1
        lisp_numargs = 137019469
        val = 140979818
        backtrace = {
          next = 0xbfa80a5c,
          function = 141197578,
          args = 0xbfa807c8,
          nargs = 1,
          debug_on_exit = 0
        }
        internal_args = 0x84a81da
        i = 142824898
#32 0x08219cc7 in exec_byte_code (bytestr=137601321, vector=137601341,
    maxdepth=12, args_template=139100634, nargs=0, args=0x0) at bytecode.c:898
        targets = {0x821c9dd, 0x821c9e9, 0x821c9eb, 0x821c9ed, 0x821c9ef,
          0x821c9ef, 0x821ca3a, 0x821ca97, 0x821971a, 0x821971c, 0x821971e,
          0x8219720, 0x8219722, 0x8219722, 0x8219728, 0x82196e5, 0x8219a67,
          0x8219a69, 0x8219a6b, 0x8219a6d, 0x8219a6f, 0x8219a6f, 0x8219aaa,
          0x8219a75, 0x8219bf7, 0x8219bf9, 0x8219bfb, 0x8219bfd, 0x8219bff,
          0x8219bff, 0x8219ba8, 0x8219bc2, 0x8219c9b, 0x8219c9d, 0x8219c9f,
          0x8219ca1, 0x8219ca3, 0x8219ca3, 0x8219c4c, 0x8219c66, 0x8219d44,
          0x8219d46, 0x8219d48, 0x8219d4a, 0x8219d4c, 0x8219d4c, 0x8219cf5,
          0x8219d0f, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821aa69, 0x821ab68, 0x821abaf,
          0x821abf6, 0x821ac3d, 0x8219952, 0x82199a2, 0x821ac92, 0x82198dc,
          0x82199f0, 0x821acda, 0x821ad2e, 0x821ad73, 0x821add8, 0x821ae1d,
          0x821aece, 0x821af09, 0x821af5d, 0x821afca, 0x821b005, 0x821b040,
          0x821b094, 0x821b0e8, 0x821b13c, 0x821b1a9, 0x821b1ee, 0x821b233,
          0x821b2e4, 0x821b35a, 0x821b3d0, 0x821b5c8, 0x821b61c, 0x821b670,
          0x821b6c4, 0x821b718, 0x821b75d, 0x821b7d7, 0x821b81c, 0x821b861,
          0x821b8a6, 0x821b984, 0x821a78d, 0x821b9d0, 0x821ba0b, 0x821bab8,
          0x821bb04, 0x821bb50, 0x821bb8b, 0x821bbce, 0x821bc11, 0x821bc57,
          0x821c9dd, 0x821bc9c, 0x821bcd3, 0x821bd0a, 0x821bd41, 0x821bd78,
          0x821bdaf, 0x821a78d, 0x821c9dd, 0x821bdea, 0x821be30, 0x821be6b,
          0x821bea6, 0x821befa, 0x821bf4e, 0x821bf89, 0x821c16d, 0x821c1c1,
          0x821c215, 0x821c269, 0x821c2a0, 0x821c9dd, 0x821a6e2, 0x8219de0,
          0x82197d5, 0x8219ecd, 0x8219fd4, 0x821a0d9, 0x821a678, 0x821a6b5,
          0x8219b6b, 0x821a74f, 0x821a7bb, 0x821a83b, 0x821a879, 0x821a8d5,
          0x821a917, 0x821a984, 0x821a9ee, 0x8219da3, 0x821c2db, 0x821c348,
          0x821c383, 0x821c3be, 0x821c3f9, 0x821c434, 0x821c488, 0x821c4dc,
          0x821c530, 0x821c584, 0x821c6c1, 0x821c715, 0x821c769, 0x821c7a4,
          0x821c7f8, 0x821c84c, 0x821c8a5, 0x821c8ff, 0x821b8eb, 0x821b930,
          0x821c944, 0x821c997, 0x821c9dd, 0x821a1de, 0x821a2a4, 0x821a399,
          0x821a494, 0x821a586, 0x821ae62, 0x821b278, 0x821ba4c, 0x821cb12,
          0x821cb6f, 0x821c9dd, 0x821c9dd, 0x821cbea, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821cc58 <repeats 64 times>}
        count = 8
        op = 1
        vectorp = 0x833a13c
        stack = {
          pc = 0x83e115b "\207",
          byte_string = 137601321,
          byte_string_start = 0x83e1154 "\302\300\bB\tB!\207",
          constants = 137601341,
          next = 0xbfa80b24
        }
        top = 0xbfa807c4
        result = 142600830
#33 0x081de588 in funcall_lambda (fun=137601285, nargs=2, arg_vector=0x84a81da)
    at eval.c:2907
        val = 142600830
        syms_left = 139100634
        next = 140978650
        lexenv = 139100634
        count = 6
        i = 2
        optional = true
        rest = false
#34 0x081dde7e in Ffuncall (nargs=3, args=0xbfa80ae8) at eval.c:2724
        fun = 137601285
        original_fun = 142824514
        funcar = 139193234
        numargs = 2
        lisp_numargs = 3
        val = 142600830
        backtrace = {
          next = 0xbfa80d8c,
          function = 142824514,
          args = 0xbfa80aec,
          nargs = 2,
          debug_on_exit = 0
        }
        internal_args = 0x1410
        i = 2
#35 0x08219cc7 in exec_byte_code (bytestr=143046201, vector=141779189,
    maxdepth=56, args_template=5136, nargs=5, args=0xbfa80e50)
    at bytecode.c:898
        targets = {0x821c9dd, 0x821c9e9, 0x821c9eb, 0x821c9ed, 0x821c9ef,
          0x821c9ef, 0x821ca3a, 0x821ca97, 0x821971a, 0x821971c, 0x821971e,
          0x8219720, 0x8219722, 0x8219722, 0x8219728, 0x82196e5, 0x8219a67,
          0x8219a69, 0x8219a6b, 0x8219a6d, 0x8219a6f, 0x8219a6f, 0x8219aaa,
          0x8219a75, 0x8219bf7, 0x8219bf9, 0x8219bfb, 0x8219bfd, 0x8219bff,
          0x8219bff, 0x8219ba8, 0x8219bc2, 0x8219c9b, 0x8219c9d, 0x8219c9f,
          0x8219ca1, 0x8219ca3, 0x8219ca3, 0x8219c4c, 0x8219c66, 0x8219d44,
          0x8219d46, 0x8219d48, 0x8219d4a, 0x8219d4c, 0x8219d4c, 0x8219cf5,
          0x8219d0f, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821aa69, 0x821ab68, 0x821abaf,
          0x821abf6, 0x821ac3d, 0x8219952, 0x82199a2, 0x821ac92, 0x82198dc,
          0x82199f0, 0x821acda, 0x821ad2e, 0x821ad73, 0x821add8, 0x821ae1d,
          0x821aece, 0x821af09, 0x821af5d, 0x821afca, 0x821b005, 0x821b040,
          0x821b094, 0x821b0e8, 0x821b13c, 0x821b1a9, 0x821b1ee, 0x821b233,
          0x821b2e4, 0x821b35a, 0x821b3d0, 0x821b5c8, 0x821b61c, 0x821b670,
          0x821b6c4, 0x821b718, 0x821b75d, 0x821b7d7, 0x821b81c, 0x821b861,
          0x821b8a6, 0x821b984, 0x821a78d, 0x821b9d0, 0x821ba0b, 0x821bab8,
          0x821bb04, 0x821bb50, 0x821bb8b, 0x821bbce, 0x821bc11, 0x821bc57,
          0x821c9dd, 0x821bc9c, 0x821bcd3, 0x821bd0a, 0x821bd41, 0x821bd78,
          0x821bdaf, 0x821a78d, 0x821c9dd, 0x821bdea, 0x821be30, 0x821be6b,
          0x821bea6, 0x821befa, 0x821bf4e, 0x821bf89, 0x821c16d, 0x821c1c1,
          0x821c215, 0x821c269, 0x821c2a0, 0x821c9dd, 0x821a6e2, 0x8219de0,
          0x82197d5, 0x8219ecd, 0x8219fd4, 0x821a0d9, 0x821a678, 0x821a6b5,
          0x8219b6b, 0x821a74f, 0x821a7bb, 0x821a83b, 0x821a879, 0x821a8d5,
          0x821a917, 0x821a984, 0x821a9ee, 0x8219da3, 0x821c2db, 0x821c348,
          0x821c383, 0x821c3be, 0x821c3f9, 0x821c434, 0x821c488, 0x821c4dc,
          0x821c530, 0x821c584, 0x821c6c1, 0x821c715, 0x821c769, 0x821c7a4,
          0x821c7f8, 0x821c84c, 0x821c8a5, 0x821c8ff, 0x821b8eb, 0x821b930,
          0x821c944, 0x821c997, 0x821c9dd, 0x821a1de, 0x821a2a4, 0x821a399,
          0x821a494, 0x821a586, 0x821ae62, 0x821b278, 0x821ba4c, 0x821cb12,
          0x821cb6f, 0x821c9dd, 0x821c9dd, 0x821cbea, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821cc58 <repeats 64 times>}
        count = 6
        op = 2
        vectorp = 0x87360f4
        stack = {
          pc = 0x886983b 
"\262\001\326\327\330\003\"\006\b\"\210\331\001!\210\332\006\a\333\003#\210\332\006\a\334\335\004!#\210\262\001\202\217",
          byte_string = 143046201,
          byte_string_start = 0x88697dc "\004\206\016",
          constants = 141779189,
          next = 0xbfa80ea4
        }
        top = 0xbfa80ae8
        result = 142639822
#36 0x081de2ff in funcall_lambda (fun=140932013, nargs=5, arg_vector=0x1410)
    at eval.c:2841
        val = 142639822
        syms_left = 5136
        next = 139137994
        lexenv = 139100634
        count = 6
        i = 3
        optional = false
        rest = false
#37 0x081dde7e in Ffuncall (nargs=6, args=0xbfa80e38) at eval.c:2724
        fun = 140932013
        original_fun = 142919066
        funcar = 139188178
        numargs = 5
        lisp_numargs = -1079505448
        val = 139100658
        backtrace = {
          next = 0xbfa8110c,
          function = 142919066,
          args = 0xbfa80e3c,
          nargs = 5,
          debug_on_exit = 0
        }
        internal_args = 0x0
        i = 4
#38 0x08219cc7 in exec_byte_code (bytestr=143061049, vector=146789597,
    maxdepth=128, args_template=0, nargs=0, args=0xbfa81184) at bytecode.c:898
        targets = {0x821c9dd, 0x821c9e9, 0x821c9eb, 0x821c9ed, 0x821c9ef,
          0x821c9ef, 0x821ca3a, 0x821ca97, 0x821971a, 0x821971c, 0x821971e,
          0x8219720, 0x8219722, 0x8219722, 0x8219728, 0x82196e5, 0x8219a67,
          0x8219a69, 0x8219a6b, 0x8219a6d, 0x8219a6f, 0x8219a6f, 0x8219aaa,
          0x8219a75, 0x8219bf7, 0x8219bf9, 0x8219bfb, 0x8219bfd, 0x8219bff,
          0x8219bff, 0x8219ba8, 0x8219bc2, 0x8219c9b, 0x8219c9d, 0x8219c9f,
          0x8219ca1, 0x8219ca3, 0x8219ca3, 0x8219c4c, 0x8219c66, 0x8219d44,
          0x8219d46, 0x8219d48, 0x8219d4a, 0x8219d4c, 0x8219d4c, 0x8219cf5,
          0x8219d0f, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821aa69, 0x821ab68, 0x821abaf,
          0x821abf6, 0x821ac3d, 0x8219952, 0x82199a2, 0x821ac92, 0x82198dc,
          0x82199f0, 0x821acda, 0x821ad2e, 0x821ad73, 0x821add8, 0x821ae1d,
          0x821aece, 0x821af09, 0x821af5d, 0x821afca, 0x821b005, 0x821b040,
          0x821b094, 0x821b0e8, 0x821b13c, 0x821b1a9, 0x821b1ee, 0x821b233,
          0x821b2e4, 0x821b35a, 0x821b3d0, 0x821b5c8, 0x821b61c, 0x821b670,
          0x821b6c4, 0x821b718, 0x821b75d, 0x821b7d7, 0x821b81c, 0x821b861,
          0x821b8a6, 0x821b984, 0x821a78d, 0x821b9d0, 0x821ba0b, 0x821bab8,
          0x821bb04, 0x821bb50, 0x821bb8b, 0x821bbce, 0x821bc11, 0x821bc57,
          0x821c9dd, 0x821bc9c, 0x821bcd3, 0x821bd0a, 0x821bd41, 0x821bd78,
          0x821bdaf, 0x821a78d, 0x821c9dd, 0x821bdea, 0x821be30, 0x821be6b,
          0x821bea6, 0x821befa, 0x821bf4e, 0x821bf89, 0x821c16d, 0x821c1c1,
          0x821c215, 0x821c269, 0x821c2a0, 0x821c9dd, 0x821a6e2, 0x8219de0,
          0x82197d5, 0x8219ecd, 0x8219fd4, 0x821a0d9, 0x821a678, 0x821a6b5,
          0x8219b6b, 0x821a74f, 0x821a7bb, 0x821a83b, 0x821a879, 0x821a8d5,
          0x821a917, 0x821a984, 0x821a9ee, 0x8219da3, 0x821c2db, 0x821c348,
          0x821c383, 0x821c3be, 0x821c3f9, 0x821c434, 0x821c488, 0x821c4dc,
          0x821c530, 0x821c584, 0x821c6c1, 0x821c715, 0x821c769, 0x821c7a4,
          0x821c7f8, 0x821c84c, 0x821c8a5, 0x821c8ff, 0x821b8eb, 0x821b930,
          0x821c944, 0x821c997, 0x821c9dd, 0x821a1de, 0x821a2a4, 0x821a399,
          0x821a494, 0x821a586, 0x821ae62, 0x821b278, 0x821ba4c, 0x821cb12,
          0x821cb6f, 0x821c9dd, 0x821c9dd, 0x821cbea, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821cc58 <repeats 64 times>}
        count = 6
        op = 5
        vectorp = 0x8bfd4dc
        stack = {
          pc = 0x8869f4b "\202Y\003\005@\205Y\003\201U",
          byte_string = 143061049,
          byte_string_start = 0x8869c04 "\306\300!\210\307\300\310\311\312 
!\313Q\"\210\314\313\301@\"\204&",
          constants = 146789597,
          next = 0xbfa813f4
        }
        top = 0xbfa80e38
        result = 139803649
#39 0x081de2ff in funcall_lambda (fun=146789973, nargs=0, arg_vector=0x0)
    at eval.c:2841
        val = 146789229
        syms_left = 0
        next = 3
        lexenv = 136420551
        count = 6
        i = 142918706
        optional = 8
        rest = 74
#40 0x081dde7e in Ffuncall (nargs=1, args=0xbfa81180) at eval.c:2724
        fun = 146789973
        original_fun = 146789973
        funcar = 2
        numargs = 0
        lisp_numargs = -1234255884
        val = -1235225237
        backtrace = {
          next = 0xbfa811e8,
          function = 146789973,
          args = 0xbfa81184,
          nargs = 0,
          debug_on_exit = 0
        }
        internal_args = 0xbfa81180
        i = -1234250768
#41 0x081dca66 in eval_sub (form=142639974) at eval.c:2012
        vals = 0xbfa81180
        argnum = 1
        sa_count = 6
        sa_must_free = false
        numargs = 4
        args_left = 139100634
        i = -1079504512
        maxargs = 142918706
        argvals = {0, -1234397993, -1234397964, -1234397266, -1234255884,
          -1234250772, -1234250772, -1234250816}
        fun = 138733589
        val = 5
        original_fun = 139173114
        original_args = 142639966
        funcar = 2740
        backtrace = {
          next = 0xbfa8165c,
          function = 139173114,
          args = 0xbfa81180,
          nargs = 1,
          debug_on_exit = 0
        }
        gcpro1 = {
          next = 0x884c432,
          var = 0xbfa81248,
          nvars = 136049844
        }
        gcpro2 = {
          next = 0xb65ff93b,
          var = 0x0,
          nvars = 139100634
        }
        gcpro3 = {
          next = 0x5f5e100,
          var = 0xbfa81180,
          nvars = 1
        }
#42 0x081db42b in internal_lisp_condition_case (var=143097626,
    bodyform=142639974, handlers=142640022) at eval.c:1147
        val = 139100634
        c = {
          tag = 139100634,
          val = 139100634,
          next = 0xbfa817e8,
          gcpro = 0x0,
          jmp = {{
              __jmpbuf = {0, 139100634, 142918706, -1079503992, -168794169,
                -1632483672},
              __mask_was_saved = 0,
              __saved_mask = {
                __val = {5, 5, 0, 0, 3215463304, 136174470, 5, 3215463352,
                  3215463336, 3215465800, 3, 2731, 2731, 10924, 2731,
                  142550710, 143097626, 142550702, 2731, 6, 0, 3215463056,
                  139100634, 139100634, 2, 3215463348, 2740, 2740, 2740,
                  3215464028, 139143026, 3215463352}
              }
            }},
          backlist = 0xbfa8165c,
          handlerlist = 0xbfa81da8,
          lisp_eval_depth = 3,
          pdlcount = 6,
          poll_suppress_count = 1,
          interrupt_input_blocked = 0,
          byte_stack = 0xbfa813f4
        }
        h = {
          handler = 142640022,
          var = 143097626,
          chosen_clause = 136047872,
          tag = 0xbfa8129c,
          next = 0xbfa81da8
        }
#43 0x0821a956 in exec_byte_code (bytestr=143061481, vector=146789389,
    maxdepth=40, args_template=0, nargs=0, args=0xbfa816d4) at bytecode.c:1094
        handlers = 142640022
        body = 142639974
        targets = {0x821c9dd, 0x821c9e9, 0x821c9eb, 0x821c9ed, 0x821c9ef,
          0x821c9ef, 0x821ca3a, 0x821ca97, 0x821971a, 0x821971c, 0x821971e,
          0x8219720, 0x8219722, 0x8219722, 0x8219728, 0x82196e5, 0x8219a67,
          0x8219a69, 0x8219a6b, 0x8219a6d, 0x8219a6f, 0x8219a6f, 0x8219aaa,
          0x8219a75, 0x8219bf7, 0x8219bf9, 0x8219bfb, 0x8219bfd, 0x8219bff,
          0x8219bff, 0x8219ba8, 0x8219bc2, 0x8219c9b, 0x8219c9d, 0x8219c9f,
          0x8219ca1, 0x8219ca3, 0x8219ca3, 0x8219c4c, 0x8219c66, 0x8219d44,
          0x8219d46, 0x8219d48, 0x8219d4a, 0x8219d4c, 0x8219d4c, 0x8219cf5,
          0x8219d0f, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821aa69, 0x821ab68, 0x821abaf,
          0x821abf6, 0x821ac3d, 0x8219952, 0x82199a2, 0x821ac92, 0x82198dc,
          0x82199f0, 0x821acda, 0x821ad2e, 0x821ad73, 0x821add8, 0x821ae1d,
          0x821aece, 0x821af09, 0x821af5d, 0x821afca, 0x821b005, 0x821b040,
          0x821b094, 0x821b0e8, 0x821b13c, 0x821b1a9, 0x821b1ee, 0x821b233,
          0x821b2e4, 0x821b35a, 0x821b3d0, 0x821b5c8, 0x821b61c, 0x821b670,
          0x821b6c4, 0x821b718, 0x821b75d, 0x821b7d7, 0x821b81c, 0x821b861,
          0x821b8a6, 0x821b984, 0x821a78d, 0x821b9d0, 0x821ba0b, 0x821bab8,
          0x821bb04, 0x821bb50, 0x821bb8b, 0x821bbce, 0x821bc11, 0x821bc57,
          0x821c9dd, 0x821bc9c, 0x821bcd3, 0x821bd0a, 0x821bd41, 0x821bd78,
          0x821bdaf, 0x821a78d, 0x821c9dd, 0x821bdea, 0x821be30, 0x821be6b,
          0x821bea6, 0x821befa, 0x821bf4e, 0x821bf89, 0x821c16d, 0x821c1c1,
          0x821c215, 0x821c269, 0x821c2a0, 0x821c9dd, 0x821a6e2, 0x8219de0,
          0x82197d5, 0x8219ecd, 0x8219fd4, 0x821a0d9, 0x821a678, 0x821a6b5,
          0x8219b6b, 0x821a74f, 0x821a7bb, 0x821a83b, 0x821a879, 0x821a8d5,
          0x821a917, 0x821a984, 0x821a9ee, 0x8219da3, 0x821c2db, 0x821c348,
          0x821c383, 0x821c3be, 0x821c3f9, 0x821c434, 0x821c488, 0x821c4dc,
          0x821c530, 0x821c584, 0x821c6c1, 0x821c715, 0x821c769, 0x821c7a4,
          0x821c7f8, 0x821c84c, 0x821c8a5, 0x821c8ff, 0x821b8eb, 0x821b930,
          0x821c944, 0x821c997, 0x821c9dd, 0x821a1de, 0x821a2a4, 0x821a399,
          0x821a494, 0x821a586, 0x821ae62, 0x821b278, 0x821ba4c, 0x821cb12,
          0x821cb6f, 0x821c9dd, 0x821c9dd, 0x821cbea, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821cc58 <repeats 64 times>}
        count = 6
        op = 143
        vectorp = 0x8bfd40c
        stack = {
          pc = 0x8869b6f "\207",
          byte_string = 143061481,
          byte_string_start = 0x8869ae0 
"\302\303\301@P\300\"\210\304\300\305\"\204V",
          constants = 146789389,
          next = 0xbfa81934
        }
        top = 0xbfa813a4
        result = 0
#44 0x081de2ff in funcall_lambda (fun=146789557, nargs=0, arg_vector=0x0)
    at eval.c:2841
        val = -1079503336
        syms_left = 0
        next = -1234250772
        lexenv = -1234250772
        count = 6
        i = -1234397266
        optional = 191
        rest = 168
#45 0x081dde7e in Ffuncall (nargs=1, args=0xbfa816d0) at eval.c:2724
        fun = 146789557
        original_fun = 146789557
        funcar = -4
        numargs = 0
        lisp_numargs = -1079503192
        val = 142918706
        backtrace = {
          next = 0xbfa81738,
          function = 146789557,
          args = 0xbfa816d4,
          nargs = 0,
          debug_on_exit = 0
        }
        internal_args = 0xbfa816d0
        i = 139100634
#46 0x081dca66 in eval_sub (form=142639958) at eval.c:2012
        vals = 0xbfa816d0
        argnum = 1
        sa_count = 6
        sa_must_free = false
        numargs = 4
        args_left = 139100634
        i = -1079503152
        maxargs = 142918706
        argvals = {-1079503032, 136048545, -1234250768, -1235225237,
          -1234255884, 100000000, 2, -1079503032}
        fun = 138733589
        val = 139100634
        original_fun = 139173114
        original_args = 142639950
        funcar = 6
        backtrace = {
          next = 0xbfa81b9c,
          function = 139173114,
          args = 0xbfa816d0,
          nargs = 1,
          debug_on_exit = 0
        }
        gcpro1 = {
          next = 0x884c432,
          var = 0x18,
          nvars = 146789552
        }
        gcpro2 = {
          next = 0x28,
          var = 0x808,
          nvars = 139100634
        }
        gcpro3 = {
          next = 0x81bf4b4,
          var = 0xbfa816d0,
          nvars = 1
        }
#47 0x081db063 in internal_catch (tag=143097578, func=0x81dc68b <eval_sub>,
    arg=142639958) at eval.c:964
        c = {
          tag = 143097578,
          val = 139100634,
          next = 0xbfa81ce0,
          gcpro = 0x0,
          jmp = {{
              __jmpbuf = {2056, 139100634, 142918706, -1079502664, -168114233,
                -1632252248},
              __mask_was_saved = 0,
              __saved_mask = {
                __val = {3215464684, 5, 3215464596, 139100634, 141586205,
                  139100634, 5, 139100634, 3215465276, 3215465800, 1, 6, 1, 0,
                  3215464660, 139100634, 2056, 3215465096, 3215464680,
                  143097578, 136169099, 142550646, 3215465372, 139143026,
                  3215464684, 5, 142550630, 139100634, 146789557, 141586205,
                  5, 143061481}
              }
            }},
          backlist = 0xbfa81b9c,
          handlerlist = 0xbfa81da8,
          lisp_eval_depth = 1,
          pdlcount = 6,
          poll_suppress_count = 1,
          interrupt_input_blocked = 0,
          byte_stack = 0xbfa81934
        }
#48 0x0821a8a7 in exec_byte_code (bytestr=143061545, vector=140914205,
    maxdepth=48, args_template=2056, nargs=2, args=0xbfa81c0c)
    at bytecode.c:1079
        v1 = 142639958
        targets = {0x821c9dd, 0x821c9e9, 0x821c9eb, 0x821c9ed, 0x821c9ef,
          0x821c9ef, 0x821ca3a, 0x821ca97, 0x821971a, 0x821971c, 0x821971e,
          0x8219720, 0x8219722, 0x8219722, 0x8219728, 0x82196e5, 0x8219a67,
          0x8219a69, 0x8219a6b, 0x8219a6d, 0x8219a6f, 0x8219a6f, 0x8219aaa,
          0x8219a75, 0x8219bf7, 0x8219bf9, 0x8219bfb, 0x8219bfd, 0x8219bff,
          0x8219bff, 0x8219ba8, 0x8219bc2, 0x8219c9b, 0x8219c9d, 0x8219c9f,
          0x8219ca1, 0x8219ca3, 0x8219ca3, 0x8219c4c, 0x8219c66, 0x8219d44,
          0x8219d46, 0x8219d48, 0x8219d4a, 0x8219d4c, 0x8219d4c, 0x8219cf5,
          0x8219d0f, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821aa69, 0x821ab68, 0x821abaf,
          0x821abf6, 0x821ac3d, 0x8219952, 0x82199a2, 0x821ac92, 0x82198dc,
          0x82199f0, 0x821acda, 0x821ad2e, 0x821ad73, 0x821add8, 0x821ae1d,
          0x821aece, 0x821af09, 0x821af5d, 0x821afca, 0x821b005, 0x821b040,
          0x821b094, 0x821b0e8, 0x821b13c, 0x821b1a9, 0x821b1ee, 0x821b233,
          0x821b2e4, 0x821b35a, 0x821b3d0, 0x821b5c8, 0x821b61c, 0x821b670,
          0x821b6c4, 0x821b718, 0x821b75d, 0x821b7d7, 0x821b81c, 0x821b861,
          0x821b8a6, 0x821b984, 0x821a78d, 0x821b9d0, 0x821ba0b, 0x821bab8,
          0x821bb04, 0x821bb50, 0x821bb8b, 0x821bbce, 0x821bc11, 0x821bc57,
          0x821c9dd, 0x821bc9c, 0x821bcd3, 0x821bd0a, 0x821bd41, 0x821bd78,
          0x821bdaf, 0x821a78d, 0x821c9dd, 0x821bdea, 0x821be30, 0x821be6b,
          0x821bea6, 0x821befa, 0x821bf4e, 0x821bf89, 0x821c16d, 0x821c1c1,
          0x821c215, 0x821c269, 0x821c2a0, 0x821c9dd, 0x821a6e2, 0x8219de0,
          0x82197d5, 0x8219ecd, 0x8219fd4, 0x821a0d9, 0x821a678, 0x821a6b5,
          0x8219b6b, 0x821a74f, 0x821a7bb, 0x821a83b, 0x821a879, 0x821a8d5,
          0x821a917, 0x821a984, 0x821a9ee, 0x8219da3, 0x821c2db, 0x821c348,
          0x821c383, 0x821c3be, 0x821c3f9, 0x821c434, 0x821c488, 0x821c4dc,
          0x821c530, 0x821c584, 0x821c6c1, 0x821c715, 0x821c769, 0x821c7a4,
          0x821c7f8, 0x821c84c, 0x821c8a5, 0x821c8ff, 0x821b8eb, 0x821b930,
          0x821c944, 0x821c997, 0x821c9dd, 0x821a1de, 0x821a2a4, 0x821a399,
          0x821a494, 0x821a586, 0x821ae62, 0x821b278, 0x821ba4c, 0x821cb12,
          0x821cb6f, 0x821c9dd, 0x821c9dd, 0x821cbea, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd, 0x821c9dd,
          0x821c9dd, 0x821cc58 <repeats 64 times>}
        count = 6
        op = 141
        vectorp = 0x8662e1c
        stack = {
          pc = 0x8869ab1 "\207",
          byte_string = 143061545,
          byte_string_start = 0x8869a9c 
"\211C\300\301\302\303\304\305\306\006\t\006\b\"\307\"\310\311%D\215\207",
          constants = 140914205,
          next = 0x0
        }
        top = 0xbfa818e0
        result = 2056
#49 0x081de2ff in funcall_lambda (fun=140914253, nargs=2, arg_vector=0x808)
    at eval.c:2841
        val = -1079501992
        syms_left = 2056
        next = 2768
        lexenv = 344
        count = 6
        i = 139121600
        optional = 191
        rest = 168
#50 0x081dde7e in Ffuncall (nargs=3, args=0xbfa81c00) at eval.c:2724
        fun = 140914253
        original_fun = 142918706
        funcar = 138985928
        numargs = 2
        lisp_numargs = -1079501848
        val = 141001704
        backtrace = {
          next = 0x0,
          function = 142918706,
          args = 0xbfa81c04,
          nargs = 2,
          debug_on_exit = 0
        }
        internal_args = 0xbfa81c00
        i = -1234250816
#51 0x081dd345 in Fapply (nargs=2, args=0xbfa81c90) at eval.c:2209
        i = 3
        numargs = 2
        spread_arg = 139100634
        funcall_args = 0xbfa81c00
        fun = 140914253
        retval = -1079501688
        gcpro1 = {
          next = 0xab0,
          var = 0x861fd00,
          nvars = 3
        }
        sa_count = 6
        sa_must_free = false
#52 0x081dd748 in apply1 (fn=142918706, arg=142639926) at eval.c:2443
        ret_ungc_val = -1079501648
        args = {142918706, 142639926}
        gcpro1 = {
          next = 0x884c432,
          var = 0xbfa81c90,
          nvars = 2
        }
#53 0x082253b5 in read_process_output_call (fun_and_args=142639934)
    at process.c:4898
No locals.
#54 0x081db619 in internal_condition_case_1 (
    bfun=0x8225392 <read_process_output_call>, arg=142639934,
    handlers=139133786, hfun=0x82253b7 <read_process_output_error_handler>)
    at eval.c:1231
        val = 4914344
        c = {
          tag = 139100634,
          val = 139100634,
          next = 0xbfa83720,
          gcpro = 0x0,
          jmp = {{
              __jmpbuf = {139133786, 2731, 142918706, -1079501368, -169031737,
                -1631707992},
              __mask_was_saved = 0,
              __saved_mask = {
                __val = {139100634, 139121605, 146789224, 3215465928,
                  135158322, 6, 139803601, 36, 139100634, 139121605,
                  135771309, 0, 11, 0, 146789224, 3215465880, 136077736,
                  138973680, 139100658, 139121600, 139100634, 137669973,
                  146789224, 3215465880, 136076289, 138973680, 139100634,
                  138973680, 139121600, 2731, 2731, 139132072}
              }
            }},
          backlist = 0x0,
          handlerlist = 0xbfa837e8,
          lisp_eval_depth = 0,
          pdlcount = 6,
          poll_suppress_count = 1,
          interrupt_input_blocked = 0,
          byte_stack = 0x0
        }
        h = {
          handler = 139133786,
          var = 139100634,
          chosen_clause = 135771309,
          tag = 0xbfa81ce0,
          next = 0xbfa837e8
        }
#55 0x08225928 in read_process_output (proc=146789229, channel=2731)
    at process.c:5097
        text = 139803601
        outer_running_asynch_code = false
        waiting = -1
        nbytes = 2731
        chars = 0xbfa81df0 "-env ORBIT_SOCKETDIR=/tmp/orbit-michael -env 
SSH_AGENT_PID=2394 -env TERM=xterm -env SHELL=/bin/bash -env 
XDG_SESSION_COOKIE=c7f036a34d95e92487cedb8c4fd14b58-1360931879.18339-631983357 
-env WINDOWID=9"...
        outstream = 142918706
        p = 0x84b035a
        opoint = -1
        coding = 0x884cc88
        carryover = 0
        readmax = 4096
        count = 3
        odeactivate = 139100634
#56 0x08224dbc in wait_reading_process_output (time_limit=28, nsecs=0,
    read_kbd=-1, do_display=true, wait_for_cell=139100634, wait_proc=0x0,
    just_wait_proc=0) at process.c:4742
        nread = -1079496376
        timeout_reduced_for_timers = 0
        channel = 4
        nfds = 1
        Available = {
          fds_bits = {16, 0 <repeats 31 times>}
        }
        Writeok = {
          fds_bits = {0 <repeats 32 times>}
        }
        check_write = 1
        check_delay = 0
        no_avail = 0
        xerrno = 11
        proc = 146789229
        timeout = {
          tv_sec = 27,
          tv_nsec = 999997556
        }
        end_time = {
          tv_sec = 1361071122,
          tv_nsec = 100966566
        }
        wait_channel = -1
        got_some_input = 1
        count = 2
#57 0x08062958 in sit_for (timeout=112, reading=true, display_option=1)
    at dispnew.c:5824
        sec = 28
        nsec = 0
        do_display = true
#58 0x0815bac8 in read_char (commandflag=1, nmaps=2, maps=0xbfa83470,
    prev_event=139100634, used_mouse_menu=0xbfa83598, end_time=0x0)
    at keyboard.c:2667
        tem0 = 192
        timeout = 28
        delay_level = 4
        buffer_size = 1
        c = 139100634
        jmpcount = 2
        local_getcjmp = {{
            __jmpbuf = {-1079495092, 0, 0, -1079495640, -172931129,
              -1900108632},
            __mask_was_saved = 0,
            __saved_mask = {
              __val = {139121605, 0, 139123802, 192, 3215471384, 136540202,
                139100634, 139123802, 139100634, 764, 0, 139123802,
                3215471656, 136108450, 764, 139123802, 139121605, 1,
                139132672, 3215472052, 3215471448, 136047367, 139172114,
                142639398, 137003181, 139126562, 137019953, 139100634,
                3215471496, 136074522, 139172114, 139123802}
            }
          }}
        save_jump = {{
            __jmpbuf = {0, 0, 0, 0, 0, 0},
            __mask_was_saved = 0,
            __saved_mask = {
              __val = {0 <repeats 32 times>}
            }
          }}
        tem = 141290754
        save = 139100634
        previous_echo_area_message = 139100634
        also_record = 139100634
        reread = false
        gcpro1 = {
          next = 0xbfa835b4,
          var = 0x84adc5a,
          nvars = -1079495704
        }
        gcpro2 = {
          next = 0x88080e6,
          var = 0x2,
          nvars = 137003181
        }
        polling_stopped_here = false
        orig_kboard = 0x84e9c30
#59 0x0816637e in read_key_sequence (keybuf=0xbfa8364c, bufsize=30,
    prompt=139100634, dont_downcase_last=false, can_return_switch_frame=true,
    fix_current_buffer=true) at keyboard.c:9227
        interrupted_kboard = 0x84e9c30
        interrupted_frame = 0x84b41d0
        key = 139121605
        used_mouse_menu = false
        echo_local_start = 0
        last_real_key_start = 0
        keys_local_start = 0
        local_first_binding = 0
        from_string = 139100634
        count = 2
        t = 0
        echo_start = 0
        keys_start = 0
        nmaps = 2
        nmaps_allocated = 2
        defs = 0xbfa83450
        submaps = 0xbfa83470
        orig_local_map = 141529934
        orig_keymap = 139100634
        localized_local_map = 0
        first_binding = 0
        first_unbound = 31
        mock_input = 0
        fkey = {
          parent = 142600894,
          map = 142600894,
          start = 0,
          end = 0
        }
        keytran = {
          parent = 139087558,
          map = 139087558,
          start = 0,
          end = 0
        }
        indec = {
          parent = 142600886,
          map = 142600886,
          start = 0,
          end = 0
        }
        shift_translated = false
        delayed_switch_frame = 139100634
        original_uppercase = 139100634
        original_uppercase_position = -1
        dummyflag = false
        starting_buffer = 0x84ad3c0
        fake_prefixed_keys = 139100634
        gcpro1 = {
          next = 0x0,
          var = 0x848f128,
          nvars = 139121600
        }
#60 0x0815997f in command_loop_1 () at keyboard.c:1459
        cmd = 139126562
        keybuf = {142639334, -1235644928, 0, -1079494984, 136178541,
          139172450, 139100634, 138998136, 139121600, -1239967544,
          -1079508990, 139172448, 139172450, 139100634, 0, 0, 141223154,
          140756446, 137304093, 139100634, -789355264, 1, 2071, 139100634,
          139100634, 0, 0, -1079494936, 136169097, 2}
        i = 1
        prev_modiff = 4
        prev_buffer = 0x84ad3c0
        already_adjusted = false
#61 0x081db51f in internal_condition_case (bfun=0x8159629 <command_loop_1>,
    handlers=139133786, hfun=0x8158ff9 <cmd_error>) at eval.c:1193
        val = 140756446
        c = {
          tag = 139100634,
          val = 139100634,
          next = 0xbfa83848,
          gcpro = 0x0,
          jmp = {{
              __jmpbuf = {0, 0, 0, -1079494648, -172275769, -1631783768},
              __mask_was_saved = 0,
              __saved_mask = {
                __val = {136046056, 142914076, 7, 3215472384, 139111424, 0,
                  3215472488, 0, 3215472640, 3215472568, 3215472580, 21,
                  3078351096, 0, 3215472664, 3215472584, 134551905,
                  3215472680, 0, 139045344, 3063386129, 1, 134535552,
                  135671261, 0, 3059339040, 469835782, 3059322368, 3061523192,
                  0, 4294967295, 3078348788}
              }
            }},
          backlist = 0x0,
          handlerlist = 0x0,
          lisp_eval_depth = 0,
          pdlcount = 2,
          poll_suppress_count = 1,
          interrupt_input_blocked = 0,
          byte_stack = 0x0
        }
        h = {
          handler = 139133786,
          var = 139100634,
          chosen_clause = 1,
          tag = 0xbfa83720,
          next = 0x0
        }
#62 0x081593a1 in command_loop_2 (ignore=139100634) at keyboard.c:1174
        val = 0
#63 0x081db063 in internal_catch (tag=139131786,
    func=0x815937d <command_loop_2>, arg=139100634) at eval.c:964
        c = {
          tag = 139131786,
          val = 139100634,
          next = 0x0,
          gcpro = 0x0,
          jmp = {{
              __jmpbuf = {0, 0, 0, -1079494376, -173733945, -1632252248},
              __mask_was_saved = 0,
              __saved_mask = {
                __val = {0, 0, 4294967295, 0, 139000768, 135671261, 469835782,
                  0, 0, 0, 0, 0, 3059750750, 0, 0, 0, 3059750750, 0, 0,
                  3060717416, 0, 3215472920, 136077736, 138749788, 139100634,
                  139121600, 136501839, 142817740, 0, 3215472920, 136076289,
                  138749788}
              }
            }},
          backlist = 0x0,
          handlerlist = 0x0,
          lisp_eval_depth = 0,
          pdlcount = 2,
          poll_suppress_count = 1,
          interrupt_input_blocked = 0,
          byte_stack = 0x0
        }
#64 0x0815935b in command_loop () at keyboard.c:1153
No locals.
#65 0x08158c3e in recursive_edit_1 () at keyboard.c:786
        count = 1
        val = -1079494232
#66 0x08158d8f in Frecursive_edit () at keyboard.c:850
        count = 0
        buffer = 139100634
#67 0x081571fb in main (argc=5, argv=0xbfa83b04) at emacs.c:1556
        dummy = -1234255884
        stack_bottom_variable = -65 '\277'
        do_initial_setlocale = true
        dumping = false
        skip_args = 1
        rlim = {
          rlim_cur = 8388608,
          rlim_max = 18446744073709551615
        }
        no_loadup = false
        junk = 0x0
        dname_arg = 0x0
        ch_to_dir = 0x82a6ff4 
"\314m*\b\370\350{\267pR{\267jF\005\bzF\005\b\212F\005\b\232F\005\b\252F\005\b\272F\005\b\312F\005\b\332F\005\b\352F\005\b\220\355&\267\340[ڶ\032G\005\b*G\005\b:G\005\b@UڶZG\005\b\300\354\374\266\320k`\266
 
\320ض`\376L\267@\225\370\266\272G\005\b\312G\005\b\332G\005\b\352G\005\b\360\225\062\267\nH\005\b
 
\351ٶ*H\005\b:H\005\bJH\005\bZH\005\bjH\005\b0l\375\266\212H\005\b\232H\005\b\252H\005\b\272H\005\b02_\266\332H\005\b\352H\005\b
 1B\267\nI\005\b\032I\005\b*I\005\b:I\005\bJI\005\b"...

Lisp Backtrace:
"internal-set-lisp-face-attribute" (0xbfa7efc8)
"set-face-attribute" (0xbfa7f2d4)
"apply" (0xbfa7f438)
"face-spec-set-2" (0xbfa7f748)
"face-spec-recalc" (0xbfa7fa58)
"byte-code" (0xbfa7fcb8)
"face-set-after-frame-default" (0xbfa801a8)
"x-create-frame-with-faces" (0xbfa804b8)
"make-frame" (0xbfa807c8)
"make-frame-on-display" (0xbfa80aec)
"server-create-window-system-frame" (0xbfa80e3c)
0x8bfd650 PVEC_COMPILED
"funcall" (0xbfa81180)
0x8bfd4b0 PVEC_COMPILED
"funcall" (0xbfa816d0)
"server-process-filter" (0xbfa81c04)
(gdb)


In GNU Emacs 24.3.50.1 (i686-pc-linux-gnu, GTK+ Version 2.20.1)
 of 2013-02-11 on michael-laptop
Bzr revision: 100346 mmaug@yahoo.com-20130211135444-dwzoskx1r8jg91o8
Windowing system distributor `The X.Org Foundation', version 11.0.10706000
System Description:Ubuntu 10.04.4 LTS

Configured using:
 `configure --with-x-toolkit=gtk CFLAGS= -O0 -g'

Important settings:
  value of $LANG: en_US.utf8
  locale-coding-system: utf-8-unix
  default enable-multibyte-characters: t

Major mode: EShell

Minor modes in effect:
  auto-insert-mode: t
  global-edit-server-edit-mode: t
  which-function-mode: t
  show-paren-mode: t
  global-hl-line-mode: t
  hl-line-mode: t
  global-auto-revert-mode: t
  delete-selection-mode: t
  recentf-mode: t
  my-region-size-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  column-number-mode: t
  line-number-mode: t
  transient-mark-mode: t

Recent input:
r e p o r t <tab> <backspace> <backspace> <backspace>
e m <tab> <return> M-x r e p o r t - e m <tab> <return>

Recent messages:
Loading em-script...done
Loading em-term...done
Loading em-unix...done
Saving file /home/michael/.emacs.d/eshell/alias...
Wrote /home/michael/.emacs.d/eshell/alias
Saving file /home/michael/.emacs.d/eshell/alias...
Wrote /home/michael/.emacs.d/eshell/alias
Saving file /home/michael/.emacs.d/eshell/alias...
Wrote /home/michael/.emacs.d/eshell/alias
When done with this frame, type C-x 5 0

Load-path shadows:
~/user-lisp/override/sql hides /usr/local/share/emacs/24.3.50/lisp/progmodes/sql
/usr/local/share/emacs/24.3.50/lisp/gnus/.dir-locals hides 
/home/michael/user-lisp/ess-12.09-1/.dir-locals

Features:
(shadow sort goto-addr gnus-util mail-extr emacsbug message byte-opt
format-spec rfc822 mml mml-sec mm-decode mm-bodies mm-encode mail-parse
rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045
ietf-drums mm-util mail-prsvr mail-utils em-unix pcomplete em-term term
disp-table ehelp electric em-script em-prompt em-ls em-hist em-pred
em-glob em-dirs em-cmpl em-basic em-banner em-alias esh-var esh-io
esh-cmd esh-opt esh-ext esh-proc esh-arg esh-groups eshell esh-module
esh-mode esh-util pp server eldoc lambda-mode g g-cus-load autoinsert
sql-table sql-hscroll sql thingatpt comint ansi-color ring cl-lib
skeleton advice help-fns w3m-load ps-print ps-def lpr edit-server
edmacro kmacro bytecomp byte-compile cconv uniquify nadvice saveplace
time-date which-func imenu paren ido hl-line autorevert delsel cus-start
cus-load ruler-mode mule-util linum recentf tree-widget wid-edit
easymenu easy-mmode tooltip ediff-hook vc-hooks lisp-float-type mwheel
x-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list
newcomment lisp-mode register page menu-bar rfn-eshadow timer select
scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame cham
georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao
korean japanese hebrew greek romanian slovak czech european ethiopic
indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple
abbrev minibuffer loaddefs button faces cus-face macroexp files
text-properties overlay sha1 md5 base64 format env code-pages mule
custom widget hashtable-print-readable backquote make-network-process
dbusbind inotify dynamic-setting system-font-setting font-render-setting
move-toolbar gtk x-toolkit x multi-tty emacs)






reply via email to

[Prev in Thread] Current Thread [Next in Thread]