tip frame. */);
Vw32_tooltip_extra_pixels = Qt;
+ DEFVAR_BOOL ("w32-disable-abort-dialog",
+ w32_disable_abort_dialog,
+ doc: /* Non-nil means don't display the abort dialog when aborting. */);
+ w32_disable_abort_dialog = 0;
+
#if 0 /* TODO: Port to W32 */
defsubr (&Sx_change_window_property);
defsubr (&Sx_delete_window_property);
void
emacs_abort (void)
{
+ if (w32_disable_abort_dialog)
+ abort ();
+
int button;
button = MessageBox (NULL,
"A fatal error has occurred!\n\n"
(with-temp-buffer
(let* ((default-directory tempdir)
(status (call-process mod-test-emacs nil t nil
- "-batch" "-Q" "-module-assertions" "-eval"
+ "-batch" "-Q" "-module-assertions"
+ "-eval" "(setq w32-disable-abort-dialog t)"
+ "-eval"
,(prin1-to-string
`(progn
(require 'mod-test ,mod-test-file)
,@body)))))
- (should (stringp status))
- ;; eg "Aborted" or "Abort trap: 6"
- (should (string-prefix-p "Abort" status))
+ ;; Aborting doesn't raise a signal on MS-DOS/Windows, but
+ ;; rather exits with a non-zero status: 2 on MS-DOS (see
+ ;; msdos.c:msdos_abort), 3 on Windows, per MSDN documentation
+ ;; of 'abort'.
+ (if (memq system-type '(ms-dos windows-nt))
+ (should (>= status 2))
+ (should (stringp status))
+ ;; eg "Aborted" or "Abort trap: 6"
+ (should (string-prefix-p "Abort" status)))
(search-backward "Emacs module assertion: ")
(goto-char (match-end 0))
(should (string-match-p ,pattern