Created
August 1, 2014 11:43
-
-
Save faried/f1a01fac78a790f32ebe to your computer and use it in GitHub Desktop.
emacs-crash.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(gdb) bt | |
#0 0x00132416 in __kernel_vsyscall () | |
#1 0x00c79dde in raise () from /lib/i386-linux-gnu/libpthread.so.0 | |
#2 0x081fc07e in terminate_due_to_signal (sig=6, backtrace_limit=<optimized out>) | |
at emacs.c:387 | |
#3 0x081fc0b2 in emacs_abort () at sysdep.c:2198 | |
#4 0x081ff6e8 in XTredeem_scroll_bar.51380 (w=0x8730508) at xterm.c:6003 | |
#5 0x081053dd in redisplay_window (window=141755661, just_this_one_p=false) at xdisp.c:16839 | |
#6 0x08107a34 in redisplay_window_0.14682 (window=141755661) at xdisp.c:14250 | |
#7 0x08180163 in internal_condition_case_1 (bfun=0x8107a10 <redisplay_window_0.14682>, | |
arg=141755661, handlers=<optimized out>, hfun=0x8200e90 <redisplay_window_error.14685>) | |
at eval.c:1371 | |
#8 0x08180250 in redisplay_windows.15167 (window=<optimized out>) at xdisp.c:14230 | |
#9 0x081fa7b8 in redisplay_internal.15911 () at xdisp.c:13829 | |
#10 0x0810a0cf in redisplay () at xdisp.c:13115 | |
#11 read_char (commandflag=1, map=158406270, prev_event=138917826, used_mouse_menu=0xbfffec9f, | |
end_time=0x0) at keyboard.c:2560 | |
#12 0x081a2d8a in read_key_sequence (keybuf=0xbfffecf0, prompt=138917826, | |
dont_downcase_last=false, can_return_switch_frame=true, fix_current_buffer=true, | |
prevent_redisplay=false, bufsize=30) at keyboard.c:9120 | |
#13 0x081a55e8 in command_loop_1 () at keyboard.c:1438 | |
#14 0x0818002c in internal_condition_case (bfun=0x81a53f0 <command_loop_1>, | |
handlers=<optimized out>, hfun=0x81331f0 <cmd_error.73676>) at eval.c:1347 | |
#15 0x081800ad in command_loop_2.73684 (ignore=138917826) at keyboard.c:1169 | |
#16 0x0817fe63 in internal_catch (tag=138944794, func=0x8180090 <command_loop_2.73684>, | |
arg=138917826) at eval.c:1111 | |
#17 0x0806270f in command_loop () at keyboard.c:1148 | |
#18 recursive_edit_1 () at keyboard.c:769 | |
#19 0x08062808 in Frecursive_edit () at keyboard.c:840 | |
#20 0x0805684c in main (argc=<optimized out>, argv=0xbffff154) at emacs.c:1650 | |
(gdb) up | |
#1 0x00c79dde in raise () from /lib/i386-linux-gnu/libpthread.so.0 | |
(gdb) up | |
#2 0x081fc07e in terminate_due_to_signal (sig=6, backtrace_limit=<optimized out>) | |
at emacs.c:387 | |
387 emacs_raise (sig); | |
(gdb) up | |
#3 0x081fc0b2 in emacs_abort () at sysdep.c:2198 | |
2198 terminate_due_to_signal (SIGABRT, 40); | |
(gdb) up | |
#4 0x081ff6e8 in XTredeem_scroll_bar.51380 (w=0x8730508) at xterm.c:6003 | |
6003 emacs_abort (); | |
(gdb) list | |
5998 w->horizontal_scroll_bar)) | |
5999 fset_condemned_scroll_bars (f, bar->next); | |
6000 else | |
6001 /* If its prev pointer is nil, it must be at the front of | |
6002 one or the other! */ | |
6003 emacs_abort (); | |
6004 } | |
6005 else | |
6006 XSCROLL_BAR (bar->prev)->next = bar->next; | |
6007 | |
(gdb) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment