0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-25 01:32:52 +00:00

Tags scanner: Fix bad bad bug

The Tags scanner was totally broken, because of a wrong setting of point.
This commit is contained in:
Carsten Dominik 2009-04-08 07:32:04 +02:00
parent 91608bf204
commit 627eaa32e6
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2009-04-08 Carsten Dominik <carsten.dominik@gmail.com>
* org.el (org-scan-tags): Fix bug in tag scanner
2009-04-07 Carsten Dominik <carsten.dominik@gmail.com>
* org.el (org-modules): Mark obsolete packages.

View file

@ -10055,7 +10055,7 @@ only lines with a TODO keyword are included in the output."
(catch :skip
(setq todo (if (match-end 1) (org-match-string-no-properties 2))
tags (if (match-end 4) (org-match-string-no-properties 4)))
(goto-char (setq lspos (1+ (match-beginning 0))))
(goto-char (setq lspos (match-beginning 0)))
(setq level (org-reduced-level (funcall outline-level))
category (org-get-category))
(setq i llast llast level)