11 Feb 2012 22:54
master: getf: Correct docstring.
stassats <stassats <at> users.sourceforge.net>
2012-02-11 21:54:44 GMT
2012-02-11 21:54:44 GMT
The branch "master" has been updated in SBCL:
via eee9d17abd872b55db3d9ab5b9b6fdc923c00cb2 (commit)
from 5a2c8811f297b21b5e4142ce29d2c7981cbb2697 (commit)
- Log -----------------------------------------------------------------
commit eee9d17abd872b55db3d9ab5b9b6fdc923c00cb2
Author: Stas Boukarev <stassats <at> gmail.com>
Date: Sun Feb 12 01:54:27 2012 +0400
getf: Correct docstring.
Use `PLACE' instead of `Place' when referring to the variable.
Fixes lp#930751
---
src/code/symbol.lisp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/code/symbol.lisp b/src/code/symbol.lisp
index fe29dd6..f2f7f35 100644
--- a/src/code/symbol.lisp
+++ b/src/code/symbol.lisp
<at> <at> -180,7 +180,7 <at> <at> distinct from the global value. Can also be SETF."
(defun getf (place indicator &optional (default ()))
#!+sb-doc
- "Search the property list stored in Place for an indicator EQ to INDICATOR.
+ "Search the property list stored in PLACE for an indicator EQ to INDICATOR.
If one is found, return the corresponding value, else return DEFAULT."
(do ((plist place (cddr plist)))
(Continue reading)
RSS Feed