From 7c081eb78c7ff4a60488fa90494cd72c1f0c8fed Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Tue, 12 Jul 2011 17:19:50 +0000
Subject: [PATCH] Don't call dgettext with a NIL doc.

---
 pcl/cmucl-documentation.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pcl/cmucl-documentation.lisp b/pcl/cmucl-documentation.lisp
index f2021b87b..6de512ab9 100644
--- a/pcl/cmucl-documentation.lisp
+++ b/pcl/cmucl-documentation.lisp
@@ -4,7 +4,7 @@
 ;;; the public domain, and is provided 'as is'.
 
 (file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/cmucl-documentation.lisp,v 1.18 2010/12/14 21:22:27 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/cmucl-documentation.lisp,v 1.19 2011/07/12 17:19:50 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -237,7 +237,7 @@
 		       (values (info typed-structure textdomain x)))
 		      (t
 		       nil))))
-    (or (intl:dgettext domain doc)
+    (or (and doc (intl:dgettext domain doc))
 	doc)))
 
   
-- 
GitLab