浏览代码

Fix commit eac6af.

Thanks to Bill White for spotting this.
Bastien Guerry 12 年之前
父节点
当前提交
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))