操作系统: windows xp
emacs版本: 23.0.0.1
演示代码:
#include <stdio.h>

void main()
{
    
int* p = 0;
    printf(
"before crash\n");
    
*= 0/*crash*/
}
在emacs的shell中运行上面的程序将出现一个崩溃对话框, 但shell中没有任何输出.
如果直接在windows shell中执行则可以看到输出.

不知道这是不是emacs shell的一个BUG.