aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2000-06-26 21:53:57 +0000
committerStefan Monnier2000-06-26 21:53:57 +0000
commita52548173c3bba05107a5114db156cfcdc9820ad (patch)
tree2c2ac26667908fea59234bb85b0e10136327f7da /src
parent889617de079fca1b745df4ec16ea55be67358335 (diff)
downloademacs-a52548173c3bba05107a5114db156cfcdc9820ad.tar.gz
emacs-a52548173c3bba05107a5114db156cfcdc9820ad.zip
(Fplist_member): Renamed from Fwidget_plist_member.
(Fwidget_get): Use it. (syms_of_fns): Defsubr it.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fns.c b/src/fns.c
index cf1300a6cd8..3135ce5fffd 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2950,7 +2950,7 @@ Normally the return value is FEATURE.")
2950 bottleneck of Widget operation. Here is their translation to C, 2950 bottleneck of Widget operation. Here is their translation to C,
2951 for the sole reason of efficiency. */ 2951 for the sole reason of efficiency. */
2952 2952
2953DEFUN ("widget-plist-member", Fwidget_plist_member, Swidget_plist_member, 2, 2, 0, 2953DEFUN ("plist-member", Fplist_member, Splist_member, 2, 2, 0,
2954 "Return non-nil if PLIST has the property PROP.\n\ 2954 "Return non-nil if PLIST has the property PROP.\n\
2955PLIST is a property list, which is a list of the form\n\ 2955PLIST is a property list, which is a list of the form\n\
2956\(PROP1 VALUE1 PROP2 VALUE2 ...\). PROP is a symbol.\n\ 2956\(PROP1 VALUE1 PROP2 VALUE2 ...\). PROP is a symbol.\n\
@@ -2994,7 +2994,7 @@ later with `widget-put'.")
2994 if (NILP (widget)) 2994 if (NILP (widget))
2995 return Qnil; 2995 return Qnil;
2996 CHECK_CONS (widget, 1); 2996 CHECK_CONS (widget, 1);
2997 tmp = Fwidget_plist_member (XCDR (widget), property); 2997 tmp = Fplist_member (XCDR (widget), property);
2998 if (CONSP (tmp)) 2998 if (CONSP (tmp))
2999 { 2999 {
3000 tmp = XCDR (tmp); 3000 tmp = XCDR (tmp);
@@ -4907,7 +4907,7 @@ invoked by mouse clicks and mouse menu items.");
4907 defsubr (&Sfeaturep); 4907 defsubr (&Sfeaturep);
4908 defsubr (&Srequire); 4908 defsubr (&Srequire);
4909 defsubr (&Sprovide); 4909 defsubr (&Sprovide);
4910 defsubr (&Swidget_plist_member); 4910 defsubr (&Splist_member);
4911 defsubr (&Swidget_put); 4911 defsubr (&Swidget_put);
4912 defsubr (&Swidget_get); 4912 defsubr (&Swidget_get);
4913 defsubr (&Swidget_apply); 4913 defsubr (&Swidget_apply);