Просмотр исходного кода

Fix commit eac6af.

Thanks to Bill White for spotting this.
Bastien Guerry 12 лет назад
Родитель
Сommit
da1ee63bbc
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -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))