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

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

bug#15156: 24.3; !MEM FULL!


From: Sebastien Vauban
Subject: bug#15156: 24.3; !MEM FULL!
Date: Fri, 06 Sep 2013 14:17:28 +0200
User-agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.3 (windows-nt)

Eli Zaretskii wrote:
>> From: "Sebastien Vauban" <sva-news@mygooglest.com>
>> Cc: 15156@debbugs.gnu.org
>> Date: Fri, 06 Sep 2013 11:42:40 +0200
>> 
>> > Anyway, putting a break at xmalloc conditioned by some large
>> > allocation size might show who is requesting this much memory.  I
>> > don't see how this can be investigated otherwise without some
>> > debugging.
>> 
>> If you have a recipe which does not constrain too much my daily usage of
>> Emacs, I'm willing to apply it.
>
> Something like
>
>   (gdb) break xmalloc if size > 10000
>   (gdb) commands
>          > bt
>        > continue
>        > end
>   (gdb)
>
> And similarly for xzalloc and xrealloc.
>
> Then run Emacs as usual, and the code which allocates these large
> chunks of memory will be shown in the backtraces.

If I do the above, I already have lots of output, and no Emacs running...

I had to stop some loop:

--8<---------------cut here---------------start------------->8---
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
Warning:
Cannot insert breakpoint 1.
Error accessing memory address 0x1146c76: Operation not permitted.
--8<---------------cut here---------------end--------------->8---

Here is the beginning of the trace:

--8<---------------cut here---------------start------------->8---
$ gdb ./emacs.exe
GNU gdb (GDB) 7.6.50.20130728-cvs (cygwin-special)
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "i686-pc-cygwin".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
..
Reading symbols from /cygdrive/c/Program Files 
(x86)/emacs-trunk/bin/emacs.exe...done.
(gdb) break xmalloc if size > 10000
Breakpoint 1 at 0x1146c76: file c:/msys/home/dani/emacs/trunk/src/alloc.c, line 
636.
(gdb) commands
Type commands for breakpoint(s) 1, one per line.
End with a line saying just "end".
>bt
>continue
>end
(gdb) break xzalloc if size > 10000
Breakpoint 2 at 0x1146cbc: file c:/msys/home/dani/emacs/trunk/src/alloc.c, line 
653.
(gdb) commands
Type commands for breakpoint(s) 2, one per line.
End with a line saying just "end".
>bt
>continue
>end
(gdb) break xrealloc if size > 10000
Breakpoint 3 at 0x1146d1c: file c:/msys/home/dani/emacs/trunk/src/alloc.c, line 
673.
(gdb) commands
Type commands for breakpoint(s) 3, one per line.
End with a line saying just "end".
>bt
>continue
>end
(gdb) set debugexceptions 1
(gdb) r
Starting program: /cygdrive/c/Program Files (x86)/emacs-trunk/bin/emacs.exe
[New Thread 10708.0x2640]
gdb: Target exception EXCEPTION_BREAKPOINT at 0x771d04ca
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
[New Thread 10708.0x28c8]
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     c:/msys/home/dani/emacs/trunk/src/alloc.c: No such file or directory.
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88fb6c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88fb6c, src_object=59296833, 
from=0, from_byte=0, to=46, to_byte=46, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59296833, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59296833, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x0111c7fd in Ffile_exists_p (filename=59296849) at 
c:/msys/home/dani/emacs/trunk/src/fileio.c:2631
#7  0x010d9c75 in init_cmdargs (argc=1, argv=0xcc19b8, skip_args=0) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:448
#8  0x010daa71 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1313
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88fb6c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88fb6c, src_object=59296769, 
from=0, from_byte=0, to=42, to_byte=42, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59296769, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59296769, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x0111c7fd in Ffile_exists_p (filename=59296785) at 
c:/msys/home/dani/emacs/trunk/src/fileio.c:2631
#7  0x010d9d08 in init_cmdargs (argc=1, argv=0xcc19b8, skip_args=0) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:474
#8  0x010daa71 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1313
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88fb6c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88fb6c, src_object=59121617, 
from=0, from_byte=0, to=48, to_byte=48, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59121617, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59121617, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x0111ceed in Ffile_symlink_p (filename=59121617) at 
c:/msys/home/dani/emacs/trunk/src/fileio.c:2789
#7  0x010d9d98 in init_cmdargs (argc=1, argv=0xcc19b8, skip_args=0) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:500
#8  0x010daa71 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1313
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88fb8c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88fb8c, src_object=59121489, 
from=0, from_byte=0, to=62, to_byte=62, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59121489, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59121489, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x0111c7fd in Ffile_exists_p (filename=59121505) at 
c:/msys/home/dani/emacs/trunk/src/fileio.c:2631
#7  0x011bf7c5 in init_callproc () at 
c:/msys/home/dani/emacs/trunk/src/callproc.c:1617
#8  0x010daac8 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1325
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88f83c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88f83c, src_object=59117921, 
from=0, from_byte=0, to=81, to_byte=81, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59117921, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59117921, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x01196bba in openp (path=58604014, str=59118081, suffixes=58603998, 
storeptr=0x0, predicate=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1560
#7  0x0120efba in check_windows_init_file () at 
c:/msys/home/dani/emacs/trunk/src/w32.c:7514
#8  0x010daad7 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1330
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
---Type <return> to continue, or q <return> to quit---
#2  0x010a7d11 in encode_coding (coding=0x88f83c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88f83c, src_object=59117889, 
from=0, from_byte=0, to=84, to_byte=84, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59117889, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59117889, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x01196bba in openp (path=58604014, str=59118081, suffixes=58603998, 
storeptr=0x0, predicate=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1560
#7  0x0120efba in check_windows_init_file () at 
c:/msys/home/dani/emacs/trunk/src/w32.c:7514
#8  0x010daad7 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1330
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88f83c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88f83c, src_object=59117841, 
from=0, from_byte=0, to=80, to_byte=80, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59117841, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59117841, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x01196bba in openp (path=58604014, str=59118081, suffixes=58603998, 
storeptr=0x0, predicate=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1560
#7  0x0120efba in check_windows_init_file () at 
c:/msys/home/dani/emacs/trunk/src/w32.c:7514
#8  0x010daad7 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1330
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88f83c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88f83c, src_object=59117793, 
from=0, from_byte=0, to=83, to_byte=83, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59117793, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59117793, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x01196bba in openp (path=58604014, str=59118081, suffixes=58603998, 
storeptr=0x0, predicate=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1560
#7  0x0120efba in check_windows_init_file () at 
c:/msys/home/dani/emacs/trunk/src/w32.c:7514
#8  0x010daad7 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1330
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88f83c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88f83c, src_object=59117745, 
from=0, from_byte=0, to=73, to_byte=73, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59117745, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59117745, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x01196bba in openp (path=58604006, str=59118081, suffixes=58603998, 
storeptr=0x0, predicate=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1560
#7  0x0120efba in check_windows_init_file () at 
c:/msys/home/dani/emacs/trunk/src/w32.c:7514
#8  0x010daad7 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1330
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88f83c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88f83c, src_object=59117713, 
from=0, from_byte=0, to=76, to_byte=76, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59117713, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59117713, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x01196bba in openp (path=58604006, str=59118081, suffixes=58603998, 
storeptr=0x0, predicate=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1560
#7  0x0120efba in check_windows_init_file () at 
c:/msys/home/dani/emacs/trunk/src/w32.c:7514
#8  0x010daad7 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1330
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88f83c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88f83c, src_object=59117665, 
from=0, from_byte=0, to=72, to_byte=72, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59117665, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59117665, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x01196bba in openp (path=58604006, str=59118081, suffixes=58603998, 
storeptr=0x0, predicate=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1560
---Type <return> to continue, or q <return> to quit---
#7  0x0120efba in check_windows_init_file () at 
c:/msys/home/dani/emacs/trunk/src/w32.c:7514
#8  0x010daad7 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1330
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88f83c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88f83c, src_object=59117633, 
from=0, from_byte=0, to=75, to_byte=75, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59117633, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59117633, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x01196bba in openp (path=58604006, str=59118081, suffixes=58603998, 
storeptr=0x0, predicate=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1560
#7  0x0120efba in check_windows_init_file () at 
c:/msys/home/dani/emacs/trunk/src/w32.c:7514
#8  0x010daad7 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1330
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88f83c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88f83c, src_object=59117569, 
from=0, from_byte=0, to=76, to_byte=76, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59117569, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59117569, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x01196bba in openp (path=58604030, str=59118081, suffixes=58603998, 
storeptr=0x0, predicate=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1560
#7  0x0120efba in check_windows_init_file () at 
c:/msys/home/dani/emacs/trunk/src/w32.c:7514
#8  0x010daad7 in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1330
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
[New Thread 10708.0x2aa4]
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146cbc
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146cbf
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88ecbc) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88ecbc, src_object=59107121, 
from=0, from_byte=0, to=75, to_byte=75, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59107121, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59107121, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x01196bba in openp (path=58604014, str=59107153, suffixes=56907802, 
storeptr=0x88f730, predicate=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1560
#7  0x01195b72 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1133
#8  0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#9  0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#10 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#11 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#12 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#13 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#14 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#15 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#16 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#17 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#18 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#19 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#20 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#21 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88ec1c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88ec1c, src_object=59107121, 
from=0, from_byte=0, to=75, to_byte=75, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59107121, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59107121, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x0111c9d9 in Ffile_readable_p (filename=59107121) at 
c:/msys/home/dani/emacs/trunk/src/fileio.c:2675
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#10 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
---Type <return> to continue, or q <return> to quit---
#11 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#12 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#13 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#14 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#15 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#17 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#18 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#19 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#20 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#21 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#22 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#23 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#24 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#25 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#26 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x87e5ec) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x87e5ec, src_object=59107121, 
from=0, from_byte=0, to=75, to_byte=75, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59107121, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59107121, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x0111e412 in Finsert_file_contents (filename=59107121, visit=56907802, 
beg=56907802, end=56907802, replace=56907802) at 
c:/msys/home/dani/emacs/trunk/src/fileio.c:3566
#7  0x0116bdd4 in Ffuncall (nargs=2, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#8  0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#10 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#12 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#13 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#14 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#15 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#17 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#18 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#19 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#20 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#21 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#22 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#23 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#24 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#25 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#26 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a6192 in decode_coding (coding=0x87e8c0) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7374
#3  0x010a8568 in decode_coding_gap (coding=0x87e8c0, chars=106, bytes=106) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7977
#4  0x011204b4 in Finsert_file_contents (filename=59106993, visit=56907802, 
beg=56907802, end=56907802, replace=56907802) at 
c:/msys/home/dani/emacs/trunk/src/fileio.c:4381
#5  0x0116bdd4 in Ffuncall (nargs=2, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#6  0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#7  0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#8  0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#9  0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#10 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#11 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#12 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#13 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#14 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#15 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
---Type <return> to continue, or q <return> to quit---
#16 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#17 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#18 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#19 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#20 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#21 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#22 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#23 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#24 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88e66c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88e66c, src_object=59107121, 
from=0, from_byte=0, to=75, to_byte=75, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=59107121, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=59107121, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012168c9 in Fw32_long_file_name (filename=59107121) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2678
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88eac4) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#12 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#13 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#14 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#15 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#16 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#17 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#18 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#19 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#20 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#21 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#22 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#23 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#24 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#25 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#26 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#27 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#28 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#29 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#30 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#31 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#32 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#33 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a6192 in decode_coding (coding=0x88e66c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7374
#3  0x010a8b53 in decode_coding_object (coding=0x88e66c, src_object=58994481, 
from=0, from_byte=0, to=75, to_byte=75, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8122
#4  0x010acf1a in code_convert_string (string=58994481, coding_system=58690018, 
dst_object=56907826, encodep=false, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9447
#5  0x010acfb1 in code_convert_string_norecord (string=58994481, 
coding_system=58690018, encodep=false) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012169b2 in Fw32_long_file_name (filename=59107121) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2689
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88eac4) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#12 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#13 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
---Type <return> to continue, or q <return> to quit---
#14 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#15 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#16 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#17 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#18 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#19 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#20 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#21 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#22 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#23 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#24 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#25 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#26 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#27 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#28 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#29 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#30 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#31 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#32 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#33 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88e34c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88e34c, src_object=58994433, 
from=0, from_byte=0, to=64, to_byte=64, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=58994433, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=58994433, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012168c9 in Fw32_long_file_name (filename=58994433) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2678
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88e7a4) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#15 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#16 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#17 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#18 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#19 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#20 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#21 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#22 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#23 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#24 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#25 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#26 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#27 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#28 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#29 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#30 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#31 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#32 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#33 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#34 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#35 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#36 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
---Type <return> to continue, or q <return> to quit---
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a6192 in decode_coding (coding=0x88e34c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7374
#3  0x010a8b53 in decode_coding_object (coding=0x88e34c, src_object=58994369, 
from=0, from_byte=0, to=64, to_byte=64, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8122
#4  0x010acf1a in code_convert_string (string=58994369, coding_system=58690018, 
dst_object=56907826, encodep=false, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9447
#5  0x010acfb1 in code_convert_string_norecord (string=58994369, 
coding_system=58690018, encodep=false) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012169b2 in Fw32_long_file_name (filename=58994433) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2689
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88e7a4) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#15 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#16 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#17 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#18 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#19 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#20 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#21 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#22 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#23 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#24 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#25 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#26 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#27 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#28 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#29 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#30 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#31 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#32 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#33 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#34 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#35 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#36 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88e02c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88e02c, src_object=58994321, 
from=0, from_byte=0, to=54, to_byte=54, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=58994321, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=58994321, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012168c9 in Fw32_long_file_name (filename=58994321) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2678
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88e484) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e7cc) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e7c0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88e7bc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#15 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#17 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#18 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#19 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#20 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#21 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#22 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#23 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
---Type <return> to continue, or q <return> to quit---
#24 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#25 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#26 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#27 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#28 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#29 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#30 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#31 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#32 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#33 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#34 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#35 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#36 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#37 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#38 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#39 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a6192 in decode_coding (coding=0x88e02c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7374
#3  0x010a8b53 in decode_coding_object (coding=0x88e02c, src_object=58994257, 
from=0, from_byte=0, to=54, to_byte=54, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8122
#4  0x010acf1a in code_convert_string (string=58994257, coding_system=58690018, 
dst_object=56907826, encodep=false, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9447
#5  0x010acfb1 in code_convert_string_norecord (string=58994257, 
coding_system=58690018, encodep=false) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012169b2 in Fw32_long_file_name (filename=58994321) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2689
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88e484) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e7cc) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e7c0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88e7bc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#15 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#17 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#18 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#19 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#20 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#21 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#22 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#23 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#24 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#25 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#26 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#27 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#28 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#29 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#30 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#31 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#32 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#33 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#34 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#35 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#36 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#37 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#38 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#39 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
---Type <return> to continue, or q <return> to quit---
#2  0x010a7d11 in encode_coding (coding=0x88dd0c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88dd0c, src_object=58994177, 
from=0, from_byte=0, to=46, to_byte=46, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=58994177, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=58994177, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012168c9 in Fw32_long_file_name (filename=58994177) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2678
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88e164) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e4ac) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e4a0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88e49c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e7cc) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e7c0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=4, args=0x88e7bc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#15 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#17 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#18 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#19 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#20 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#21 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#22 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#23 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#24 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#25 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#26 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#27 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#28 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#29 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#30 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#31 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#32 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#33 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#34 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#35 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#36 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#37 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#38 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#39 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#40 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#41 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#42 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a6192 in decode_coding (coding=0x88dd0c) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7374
#3  0x010a8b53 in decode_coding_object (coding=0x88dd0c, src_object=58994097, 
from=0, from_byte=0, to=46, to_byte=46, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8122
#4  0x010acf1a in code_convert_string (string=58994097, coding_system=58690018, 
dst_object=56907826, encodep=false, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9447
#5  0x010acfb1 in code_convert_string_norecord (string=58994097, 
coding_system=58690018, encodep=false) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012169b2 in Fw32_long_file_name (filename=58994177) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2689
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88e164) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e4ac) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e4a0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88e49c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e7cc) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e7c0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=4, args=0x88e7bc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#15 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#17 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#18 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#19 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
---Type <return> to continue, or q <return> to quit---
#20 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#21 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#22 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#23 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#24 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#25 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#26 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#27 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#28 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#29 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#30 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#31 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#32 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#33 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#34 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#35 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#36 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#37 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#38 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#39 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#40 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#41 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#42 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88d9ec) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88d9ec, src_object=58994049, 
from=0, from_byte=0, to=40, to_byte=40, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=58994049, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=58994049, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012168c9 in Fw32_long_file_name (filename=58994049) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2678
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88de44) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e18c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e180) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88e17c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e4ac) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e4a0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=4, args=0x88e49c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e7cc) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#15 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e7c0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116bf3c in Ffuncall (nargs=4, args=0x88e7bc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#17 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#18 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#19 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#20 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#21 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#22 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#23 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#24 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#25 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#26 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#27 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#28 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#29 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#30 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#31 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#32 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#33 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#34 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#35 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#36 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
---Type <return> to continue, or q <return> to quit---
#37 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#38 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#39 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#40 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#41 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#42 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#43 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#44 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#45 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a6192 in decode_coding (coding=0x88d9ec) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7374
#3  0x010a8b53 in decode_coding_object (coding=0x88d9ec, src_object=58993969, 
from=0, from_byte=0, to=40, to_byte=40, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8122
#4  0x010acf1a in code_convert_string (string=58993969, coding_system=58690018, 
dst_object=56907826, encodep=false, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9447
#5  0x010acfb1 in code_convert_string_norecord (string=58993969, 
coding_system=58690018, encodep=false) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012169b2 in Fw32_long_file_name (filename=58994049) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2689
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88de44) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e18c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e180) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88e17c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e4ac) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e4a0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=4, args=0x88e49c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e7cc) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#15 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e7c0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116bf3c in Ffuncall (nargs=4, args=0x88e7bc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#17 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#18 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#19 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#20 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#21 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#22 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#23 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#24 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#25 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#26 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#27 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#28 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#29 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#30 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#31 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#32 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#33 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#34 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#35 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#36 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#37 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#38 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#39 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#40 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#41 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#42 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#43 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#44 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#45 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88d6cc) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
---Type <return> to continue, or q <return> to quit---
#3  0x010a96b0 in encode_coding_object (coding=0x88d6cc, src_object=58993889, 
from=0, from_byte=0, to=34, to_byte=34, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=58993889, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=58993889, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012168c9 in Fw32_long_file_name (filename=58993889) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2678
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88db24) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88de6c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88de60) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88de5c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e18c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e180) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=4, args=0x88e17c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e4ac) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#15 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e4a0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116bf3c in Ffuncall (nargs=4, args=0x88e49c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#17 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e7cc) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#18 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e7c0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#19 0x0116bf3c in Ffuncall (nargs=4, args=0x88e7bc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#20 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#21 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#22 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#23 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#24 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#25 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#26 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#27 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#28 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#29 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#30 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#31 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#32 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#33 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#34 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#35 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#36 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#37 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#38 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#39 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#40 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#41 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#42 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#43 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#44 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#45 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#46 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#47 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#48 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a6192 in decode_coding (coding=0x88d6cc) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7374
#3  0x010a8b53 in decode_coding_object (coding=0x88d6cc, src_object=58993793, 
from=0, from_byte=0, to=34, to_byte=34, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8122
#4  0x010acf1a in code_convert_string (string=58993793, coding_system=58690018, 
dst_object=56907826, encodep=false, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9447
#5  0x010acfb1 in code_convert_string_norecord (string=58993793, 
coding_system=58690018, encodep=false) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012169b2 in Fw32_long_file_name (filename=58993889) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2689
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88db24) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88de6c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88de60) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88de5c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e18c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e180) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=4, args=0x88e17c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e4ac) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
---Type <return> to continue, or q <return> to quit---
#15 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e4a0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116bf3c in Ffuncall (nargs=4, args=0x88e49c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#17 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e7cc) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#18 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e7c0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#19 0x0116bf3c in Ffuncall (nargs=4, args=0x88e7bc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#20 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#21 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#22 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#23 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#24 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#25 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#26 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#27 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#28 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#29 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#30 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#31 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#32 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#33 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#34 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#35 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#36 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#37 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#38 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#39 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#40 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#41 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#42 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#43 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#44 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#45 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#46 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#47 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#48 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88d3ac) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88d3ac, src_object=58993729, 
from=0, from_byte=0, to=22, to_byte=22, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=58993729, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=58993729, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012168c9 in Fw32_long_file_name (filename=58993729) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2678
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88d804) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88db4c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88db40) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88db3c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88de6c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88de60) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=4, args=0x88de5c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e18c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#15 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e180) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116bf3c in Ffuncall (nargs=4, args=0x88e17c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#17 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e4ac) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#18 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e4a0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#19 0x0116bf3c in Ffuncall (nargs=4, args=0x88e49c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#20 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e7cc) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#21 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e7c0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#22 0x0116bf3c in Ffuncall (nargs=4, args=0x88e7bc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#23 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#24 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#25 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#26 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
---Type <return> to continue, or q <return> to quit---
#27 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#28 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#29 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#30 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#31 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#32 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#33 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#34 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#35 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#36 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#37 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#38 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#39 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#40 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#41 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#42 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#43 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#44 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#45 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#46 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#47 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#48 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#49 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#50 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#51 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a6192 in decode_coding (coding=0x88d3ac) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7374
#3  0x010a8b53 in decode_coding_object (coding=0x88d3ac, src_object=58993665, 
from=0, from_byte=0, to=22, to_byte=22, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8122
#4  0x010acf1a in code_convert_string (string=58993665, coding_system=58690018, 
dst_object=56907826, encodep=false, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9447
#5  0x010acfb1 in code_convert_string_norecord (string=58993665, 
coding_system=58690018, encodep=false) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x012169b2 in Fw32_long_file_name (filename=58993729) at 
c:/msys/home/dani/emacs/trunk/src/w32proc.c:2689
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88d804) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88db4c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88db40) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88db3c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88de6c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88de60) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=4, args=0x88de5c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e18c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#15 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e180) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116bf3c in Ffuncall (nargs=4, args=0x88e17c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#17 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e4ac) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#18 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e4a0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#19 0x0116bf3c in Ffuncall (nargs=4, args=0x88e49c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#20 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e7cc) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#21 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e7c0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#22 0x0116bf3c in Ffuncall (nargs=4, args=0x88e7bc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#23 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#24 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#25 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#26 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#27 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#28 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#29 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#30 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#31 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#32 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#33 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#34 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
---Type <return> to continue, or q <return> to quit---
#35 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#36 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#37 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#38 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#39 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#40 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#41 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#42 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#43 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
#44 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#45 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#46 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#47 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#48 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#49 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#50 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#51 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

Breakpoint 1, xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:636
636     in c:/msys/home/dani/emacs/trunk/src/alloc.c
#0  xmalloc (size=65536) at c:/msys/home/dani/emacs/trunk/src/alloc.c:636
#1  0x0114708b in record_xmalloc (size=65536) at 
c:/msys/home/dani/emacs/trunk/src/alloc.c:827
#2  0x010a7d11 in encode_coding (coding=0x88d4ac) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:7770
#3  0x010a96b0 in encode_coding_object (coding=0x88d4ac, src_object=58664721, 
from=0, from_byte=0, to=22, to_byte=22, dst_object=56907826) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:8349
#4  0x010acede in code_convert_string (string=58664721, coding_system=58690018, 
dst_object=56907826, encodep=true, nocopy=false, norecord=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9445
#5  0x010acfb1 in code_convert_string_norecord (string=58664721, 
coding_system=58690018, encodep=true) at 
c:/msys/home/dani/emacs/trunk/src/coding.c:9467
#6  0x0111ceed in Ffile_symlink_p (filename=58664721) at 
c:/msys/home/dani/emacs/trunk/src/fileio.c:2789
#7  0x0116bd00 in Ffuncall (nargs=2, args=0x88d814) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2855
#8  0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88db4c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#9  0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88db40) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#10 0x0116bf3c in Ffuncall (nargs=4, args=0x88db3c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#11 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88de6c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#12 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88de60) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#13 0x0116bf3c in Ffuncall (nargs=4, args=0x88de5c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#14 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e18c) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#15 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e180) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#16 0x0116bf3c in Ffuncall (nargs=4, args=0x88e17c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#17 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e4ac) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#18 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e4a0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#19 0x0116bf3c in Ffuncall (nargs=4, args=0x88e49c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#20 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88e7cc) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#21 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88e7c0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#22 0x0116bf3c in Ffuncall (nargs=4, args=0x88e7bc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#23 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=3, args=0x88eaec) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#24 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=3, arg_vector=0x88eae0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#25 0x0116bf3c in Ffuncall (nargs=4, args=0x88eadc) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#26 0x011ac3f1 in exec_byte_code (bytestr=19439777, vector=19439797, 
maxdepth=64, args_template=3076, nargs=1, args=0x88ede0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#27 0x0116c4e2 in funcall_lambda (fun=19439757, nargs=1, arg_vector=0x88eddc) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#28 0x0116bf3c in Ffuncall (nargs=2, args=0x88edd8) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#29 0x0116b7eb in call1 (fn=57022826, arg1=59107121) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2654
#30 0x01197388 in readevalloop (readcharfun=56935429, stream=0x0, 
sourcename=59107121, printflag=false, unibyte=56907802, readfun=56907802, 
start=56907802, end=56907802)
    at c:/msys/home/dani/emacs/trunk/src/lread.c:1780
#31 0x01197965 in Feval_buffer (buffer=56935429, printflag=56907802, 
filename=59107121, unibyte=56907802, do_allow_print=56907826) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1937
#32 0x0116bdd4 in Ffuncall (nargs=6, args=0x88ef64) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#33 0x011ac3f1 in exec_byte_code (bytestr=19343441, vector=19343461, 
maxdepth=24, args_template=56907802, nargs=0, args=0x0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#34 0x0116c8a6 in funcall_lambda (fun=19343381, nargs=4, arg_vector=0x1272865 
<pure+94501>) at c:/msys/home/dani/emacs/trunk/src/eval.c:3089
#35 0x0116bf3c in Ffuncall (nargs=5, args=0x88f25c) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2904
#36 0x0116b8ab in call4 (fn=58620698, arg1=59107121, arg2=59107121, 
arg3=56907826, arg4=56907826) at c:/msys/home/dani/emacs/trunk/src/eval.c:2703
#37 0x011961a9 in Fload (file=59107153, noerror=56907826, nomessage=56907826, 
nosuffix=56907826, must_suffix=56907802) at 
c:/msys/home/dani/emacs/trunk/src/lread.c:1294
#38 0x0116bdd4 in Ffuncall (nargs=5, args=0x88f890) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2871
#39 0x011ac3f1 in exec_byte_code (bytestr=19523937, vector=19523957, 
maxdepth=32, args_template=0, nargs=0, args=0x88faf0) at 
c:/msys/home/dani/emacs/trunk/src/bytecode.c:905
#40 0x0116c4e2 in funcall_lambda (fun=19523917, nargs=0, arg_vector=0x88faf0) 
at c:/msys/home/dani/emacs/trunk/src/eval.c:3023
#41 0x0116c201 in apply_lambda (fun=19523917, args=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2964
#42 0x0116aba9 in eval_sub (form=58607934) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2270
#43 0x0116a1c9 in Feval (form=58607934, lexical=56907802) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:2042
---Type <return> to continue, or q <return> to quit---
#44 0x010dd1b5 in top_level_2 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1170
#45 0x01168b48 in internal_condition_case (bfun=0x10dd198 <top_level_2>, 
handlers=56962266, hfun=0x10dcd54 <cmd_error>) at 
c:/msys/home/dani/emacs/trunk/src/eval.c:1339
#46 0x010dd1e9 in top_level_1 (ignore=56907802) at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1178
#47 0x01168462 in internal_catch (tag=56952146, func=0x10dd1b7 <top_level_1>, 
arg=56907802) at c:/msys/home/dani/emacs/trunk/src/eval.c:1113
#48 0x010dd11b in command_loop () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:1139
#49 0x010dc8f1 in recursive_edit_1 () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:779
#50 0x010dcaad in Frecursive_edit () at 
c:/msys/home/dani/emacs/trunk/src/keyboard.c:843
#51 0x010dad7a in main (argc=1, argv=0xcc19b8) at 
c:/msys/home/dani/emacs/trunk/src/emacs.c:1570
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146d1c
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146d20
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76
gdb: Target exception EXCEPTION_SINGLE_STEP at 0x1146c79
gdb: Target exception EXCEPTION_BREAKPOINT at 0x1146c76

(... rest not included ...)
--8<---------------cut here---------------end--------------->8---





reply via email to

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