Skip to content
Snippets Groups Projects
Commit f95db22f authored by ram's avatar ram
Browse files

Don't call NAMESTRING on NIL in REGION-COMPILE.

parent ce409517
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/lispeval.lisp,v 1.1.1.8 1991/11/12 01:14:36 chiles Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/lispeval.lisp,v 1.1.1.9 1992/01/14 14:25:49 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -329,8 +329,8 @@ ...@@ -329,8 +329,8 @@
(let* ((region (region (copy-mark (region-start region) :left-inserting) (let* ((region (region (copy-mark (region-start region) :left-inserting)
(copy-mark (region-end region) :left-inserting))) (copy-mark (region-end region) :left-inserting)))
(buf (line-buffer (mark-line (region-start region)))) (buf (line-buffer (mark-line (region-start region))))
(defined-from (and buf (pn (and buf (buffer-pathname buf)))
(namestring (buffer-pathname buf))))) (defined-from (if pn (namestring pn) "unknown")))
(queue-note (make-note :kind :compile (queue-note (make-note :kind :compile
:context (region-context region "compilation") :context (region-context region "compilation")
:buffer (and region :buffer (and region
......
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