org-element: Comply to Emacs 23 signature requirements
* lisp/org-element.el (org-element--cache-sync): Call `avl-tree-delete' with 2 arguments only as a 4-arguments call is only compatible with Emacs 24.1 and later.
This commit is contained in:
parent
363fd7e8f3
commit
5f38f7b7b0
|
@ -5537,7 +5537,8 @@ removed from the cache."
|
||||||
(t
|
(t
|
||||||
(setq end
|
(setq end
|
||||||
(max (1- (org-element-property :end data)) end))
|
(max (1- (org-element-property :end data)) end))
|
||||||
(avl-tree-delete org-element--cache data nil t))))))
|
(avl-tree-delete org-element--cache data)
|
||||||
|
t)))))
|
||||||
;; Phase 2.
|
;; Phase 2.
|
||||||
;;
|
;;
|
||||||
;; Shift all elements starting after END by OFFSET (for an
|
;; Shift all elements starting after END by OFFSET (for an
|
||||||
|
|
Loading…
Reference in New Issue