M => +3 -3
@@ 106,9 106,9 @@ For example, to point to your `obe-bibtex-file' use the following.
(cl-incf counter)))
;; build the nodes of the graph
(add (col :title))
(add (remove-if (lambda (author) (string-match "others" author))
(remove-duplicates (apply #'append (col :authors))
:test #'string=)))
(add (cl-remove-if (lambda (author) (string-match "others" author))
(remove-duplicates (apply #'append (col :authors))
:test #'string=)))
(dolist (field fields)
(add (remove-duplicates (col field) :test #'string=)))
;; build the links in the graph
M lisp/org-depend.el => lisp/org-depend.el +1 -1
@@ 287,7 287,7 @@ This does two different kinds of triggers:
(if no-wrap items-after
(append items-after items-before))))
(t (nreverse items))))
- (setq items (remove-if
+ (setq items (cl-remove-if
(lambda (item)
(or (equal (first item) this-item)
(and (not todo-and-done-only)