aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorErik Naggum1996-01-07 14:34:54 +0000
committerErik Naggum1996-01-07 14:34:54 +0000
commit1fbb64aa7f044b91c8a28e2857c8025851128e0f (patch)
tree89495ab8b9176cac910da7c59149b666481a2355 /src
parente118218fae1502a78fdeeaf017c478a4ecddfc34 (diff)
downloademacs-1fbb64aa7f044b91c8a28e2857c8025851128e0f.tar.gz
emacs-1fbb64aa7f044b91c8a28e2857c8025851128e0f.zip
(Fplist_get): Rename arg `val' to `plist' as in doc.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fns.c b/src/fns.c
index b133967a7ac..2b85796312d 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -920,17 +920,17 @@ merge (org_l1, org_l2, pred)
920 920
921 921
922DEFUN ("plist-get", Fplist_get, Splist_get, 2, 2, 0, 922DEFUN ("plist-get", Fplist_get, Splist_get, 2, 2, 0,
923 "Extract a value from a property list.\n\ 923 "Extract a value from a property list.\n\
924PLIST is a property list, which is a list of the form\n\ 924PLIST is a property list, which is a list of the form\n\
925\(PROP1 VALUE1 PROP2 VALUE2...). This function returns the value\n\ 925\(PROP1 VALUE1 PROP2 VALUE2...). This function returns the value\n\
926corresponding to the given PROP, or nil if PROP is not\n\ 926corresponding to the given PROP, or nil if PROP is not\n\
927one of the properties on the list.") 927one of the properties on the list.")
928 (val, prop) 928 (plist, prop)
929 Lisp_Object val; 929 Lisp_Object plist;
930 register Lisp_Object prop; 930 register Lisp_Object prop;
931{ 931{
932 register Lisp_Object tail; 932 register Lisp_Object tail;
933 for (tail = val; !NILP (tail); tail = Fcdr (Fcdr (tail))) 933 for (tail = plist; !NILP (tail); tail = Fcdr (Fcdr (tail)))
934 { 934 {
935 register Lisp_Object tem; 935 register Lisp_Object tem;
936 tem = Fcar (tail); 936 tem = Fcar (tail);