소스 검색

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