From d5e2031bc7b4cdc29560dd27b22a1bf62ab20f5b Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Wed, 3 Nov 2010 23:16:37 +0100 Subject: [PATCH] XEmacs compatibility patch * lisp/org-list.el (org-list-parse-list): Use `org-looking-at-p'. --- lisp/org-list.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-list.el b/lisp/org-list.el index fb504ffeb..f76151e48 100644 --- a/lisp/org-list.el +++ b/lisp/org-list.el @@ -2029,7 +2029,7 @@ sublevels as a list of strings." (while (org-search-forward-unenclosed org-item-beginning-re end t) (save-excursion (beginning-of-line) - (setq ltype (cond ((looking-at-p "^[ \t]*[0-9]") 'ordered) + (setq ltype (cond ((org-looking-at-p "^[ \t]*[0-9]") 'ordered) ((org-at-item-description-p) 'descriptive) (t 'unordered)))) (let* ((indent1 (org-get-indentation))