Browse Source

Remove duplicate definition of `org-plist-delete'

* org.el (org-plist-delete): Remove duplicate definition.

Patch by Julien Danjou.
Carsten Dominik 14 years ago
parent
commit
a6255a6ab7
1 changed files with 0 additions and 10 deletions
  1. 0 10
      lisp/org.el

+ 0 - 10
lisp/org.el

@@ -17997,16 +17997,6 @@ With prefix arg UNCOMPILED, load the uncompiled versions."
       (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
     s))
 
-(defun org-plist-delete (plist property)
-  "Delete PROPERTY from PLIST.
-This is in contrast to merely setting it to 0."
-  (let (p)
-    (while plist
-      (if (not (eq property (car plist)))
-	  (setq p (plist-put p (car plist) (nth 1 plist))))
-      (setq plist (cddr plist)))
-    p))
-
 (defun org-force-self-insert (N)
   "Needed to enforce self-insert under remapping."
   (interactive "p")