1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-12-31 11:13:59 +00:00

Fix commit eac6af.

Thanks to Bill White for spotting this.
This commit is contained in:
Bastien Guerry 2013-02-09 10:25:13 +01:00
parent 779c450f52
commit da1ee63bbc

View File

@ -22672,7 +22672,7 @@ With a prefix argument ARG, jump forward ARG many source blocks.
When BACKWARD is non-nil, jump to the previous block.
When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
(interactive "p")
(let ((re (or block-regexp org-babel-src-block-regexp))
(let ((re (or block-regexp org-block-regexp))
(re-search-fn (or (and backward 're-search-backward)
're-search-forward)))
(if (looking-at re) (forward-char 1))