Skip to content
Snippets Groups Projects
Commit 763ec2bc authored by wlott's avatar wlott
Browse files

Oops, had default-interrupts and ignore-interrupts switched.

parent 8d942f2f
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.10 1990/11/26 18:25:58 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.11 1990/11/28 09:50:43 wlott Exp $
;;; ;;;
;;; Code for handling UNIX signals. ;;; Code for handling UNIX signals.
;;; ;;;
...@@ -204,10 +204,10 @@ ...@@ -204,10 +204,10 @@
(t (the function (di::make-lisp-obj result))))))) (t (the function (di::make-lisp-obj result)))))))
(defun default-interrupt (signal) (defun default-interrupt (signal)
(enable-interrupt signal :ignore)) (enable-interrupt signal :default))
(defun ignore-interrupt (signal) (defun ignore-interrupt (signal)
(enable-interrupt signal :default)) (enable-interrupt signal :ignore))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment