Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
This commit is contained in:
commit
9d76d9c308
|
@ -193,8 +193,8 @@ which case the entire range is returned."
|
||||||
(when (= depth 0)
|
(when (= depth 0)
|
||||||
(setq return (reverse (cons (substring buffer 0 -1) return)))
|
(setq return (reverse (cons (substring buffer 0 -1) return)))
|
||||||
(setq buffer "")))
|
(setq buffer "")))
|
||||||
((string= holder "(") (setq depth (+ depth 1)))
|
((or (string= holder "(") (string= holder "[")) (setq depth (+ depth 1)))
|
||||||
((string= holder ")") (setq depth (- depth 1)))))
|
((or (string= holder ")") (string= holder "]")) (setq depth (- depth 1)))))
|
||||||
(mapcar #'org-babel-trim (reverse (cons buffer return)))))
|
(mapcar #'org-babel-trim (reverse (cons buffer return)))))
|
||||||
|
|
||||||
(defun org-babel-ref-at-ref-p ()
|
(defun org-babel-ref-at-ref-p ()
|
||||||
|
|
Loading…
Reference in New Issue