Function: org-notes-order-reversed-p
org-notes-order-reversed-p is a byte-compiled function defined in
org.el.gz.
Signature
(org-notes-order-reversed-p)
Documentation
Check if the current file should receive notes in reversed order.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-notes-order-reversed-p ()
"Check if the current file should receive notes in reversed order."
(cond
((not org-reverse-note-order) nil)
((eq t org-reverse-note-order) t)
((not (listp org-reverse-note-order)) nil)
(t (catch 'exit
(dolist (entry org-reverse-note-order)
(when (string-match (car entry) buffer-file-name)
(throw 'exit (cdr entry))))))))