From 8887d945bbba05a4a3e1030a8d567c0858a414d4 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Sat, 17 Apr 2010 20:12:25 +0000 Subject: [PATCH] pcl/defcombin.lisp: o Set the default documentation for the short form of DEFINE-METHOD-COMBINATION to NIL instead of "". general-info/release-20b.txt: o Update --- general-info/release-20b.txt | 2 ++ pcl/defcombin.lisp | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/general-info/release-20b.txt b/general-info/release-20b.txt index 6c2008926..3a4bc2248 100644 --- a/general-info/release-20b.txt +++ b/general-info/release-20b.txt @@ -58,6 +58,8 @@ New in this release: class object as well as a name. - Recognize but ignore the :DECLARE argument to ENSURE-GENERIC-FUNCTION. + - Default documentation for short form of + DEFINE-METHOD-COMBINATION is NIL, not "". * Bugfixes: - On Unicode builds, printing of '|\|| and '|`| was incorrect diff --git a/pcl/defcombin.lisp b/pcl/defcombin.lisp index e45de6014..74f35c8a5 100644 --- a/pcl/defcombin.lisp +++ b/pcl/defcombin.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* (file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/defcombin.lisp,v 1.28 2010/03/19 15:19:03 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/defcombin.lisp,v 1.29 2010/04/17 20:12:25 rtoy Rel $") (in-package :pcl) (intl:textdomain "cmucl") @@ -110,7 +110,7 @@ (defun expand-short-defcombin (whole) (let* ((type (cadr whole)) (documentation - (getf (cddr whole) :documentation "")) + (getf (cddr whole) :documentation nil)) (identity-with-one-arg (getf (cddr whole) :identity-with-one-argument nil)) (operator -- GitLab