projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a2c881
)
getf: Correct docstring.
author
Stas Boukarev
<stassats@gmail.com>
Sat, 11 Feb 2012 21:54:27 +0000
(
01:54
+0400)
committer
Stas Boukarev
<stassats@gmail.com>
Sat, 11 Feb 2012 21:54:27 +0000
(
01:54
+0400)
Use `PLACE' instead of `Place' when referring to the variable.
Fixes lp#930751
src/code/symbol.lisp
patch
|
blob
|
history
diff --git
a/src/code/symbol.lisp
b/src/code/symbol.lisp
index
fe29dd6
..
f2f7f35
100644
(file)
--- a/
src/code/symbol.lisp
+++ b/
src/code/symbol.lisp
@@
-180,7
+180,7
@@
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)))
((null plist) default)