Function: org-remove-keyword-keys

org-remove-keyword-keys is a byte-compiled function defined in org.el.gz.

Signature

(org-remove-keyword-keys LIST)

Documentation

Remove a pair of parenthesis at the end of each string in LIST.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-remove-keyword-keys (list)
  "Remove a pair of parenthesis at the end of each string in LIST."
  (mapcar (lambda (x)
	    (if (string-match "(.*)$" x)
		(substring x 0 (match-beginning 0))
	      x))
	  list))