## Function: COMMON-LISP:REMPROP [![package](https://img.shields.io/badge/Package-COMMON--LISP-5f9ea0.svg?style=social&colorA=999999)](../) [![type](https://img.shields.io/badge/Type-Function-5f9ea0.svg?style=social&colorA=999999)](../#function) [![clhs](https://img.shields.io/badge/CLHS-REMPROP-5f9ea0.svg?style=social&colorA=999999)](http://www.lispworks.com/documentation/HyperSpec/Body/f_rempro.htm) [![github](https://img.shields.io/badge/GitHub-View_the_source-5f9ea0.svg?style=social&colorA=999999&logo=github)](https://github.com/sbcl/sbcl/blob/master/src/code/symbol.lisp/) > Look on property list of SYMBOL for property with specified > INDICATOR. If found, splice this indicator and its value out of > the plist, and return the tail of the original list starting with > INDICATOR. If not found, return () with no side effects. > > NOTE: The ANSI specification requires REMPROP to return true (not false) > or false (the symbol NIL). Portable code should not rely on any other value. ### Lambda list ```cl (symbol sb-impl::indicator) ```