Function: hanja-filter
hanja-filter is a byte-compiled function defined in hanja-util.el.gz.
Signature
(hanja-filter CONDP LST)
Documentation
Construct a list from the elements of LST for which CONDP returns true.
Source Code
;; Defined in /usr/src/emacs/lisp/language/hanja-util.el.gz
(defun hanja-filter (condp lst)
"Construct a list from the elements of LST for which CONDP returns true."
(delq
nil
(mapcar (lambda (x) (and (funcall condp x) x)) lst)))