diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -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 | ||
| 2953 | DEFUN ("widget-plist-member", Fwidget_plist_member, Swidget_plist_member, 2, 2, 0, | 2953 | DEFUN ("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\ |
| 2955 | PLIST is a property list, which is a list of the form\n\ | 2955 | PLIST 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); |