]> git.eshelyaron.com Git - emacs.git/commitdiff
alist-get doc string further clarification
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 7 Oct 2020 02:50:52 +0000 (04:50 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 7 Oct 2020 02:50:52 +0000 (04:50 +0200)
* lisp/subr.el (alist-get): Mention generalized variables again
for easier cross-referencing (bug#43836).

lisp/subr.el

index a56dc35ab62fa12ccb4e42ba55cd8569b41684f5..777ef103cf59d6b5e5c05cd5e23911f1edc10bed 100644 (file)
@@ -832,10 +832,11 @@ Elements of ALIST that are not conses are ignored."
 If KEY is not found in ALIST, return DEFAULT.
 Equality with KEY is tested by TESTFN, defaulting to `eq'.
 
-You can use `alist-get' in PLACE expressions.  This will modify
-an existing association (more precisely, the first one if
-multiple exist), or add a new element to the beginning of ALIST,
-destructively modifying the list stored in ALIST.
+You can use `alist-get' in \"place expressions\"; i.e., as a
+generalized variable.  Doing this will modify an existing
+association (more precisely, the first one if multiple exist), or
+add a new element to the beginning of ALIST, destructively
+modifying the list stored in ALIST.
 
 Example: