Skip to content
Snippets Groups Projects
Commit 8887d945 authored by rtoy's avatar rtoy
Browse files

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
parent d59a6cef
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......
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