Bugfix: Use let* instead of let
This commit is contained in:
parent
f622d8d288
commit
cd4c794af6
|
@ -387,7 +387,7 @@ source block. Specifically at the beginning of the #+RESNAME:
|
||||||
line. If no result exists for this block then create a
|
line. If no result exists for this block then create a
|
||||||
#+RESNAME: line following the source block."
|
#+RESNAME: line following the source block."
|
||||||
(save-excursion
|
(save-excursion
|
||||||
(let ((on-lob-line (progn (beginning-of-line 1)
|
(let* ((on-lob-line (progn (beginning-of-line 1)
|
||||||
(looking-at org-babel-lob-one-liner-regexp)))
|
(looking-at org-babel-lob-one-liner-regexp)))
|
||||||
(name (if on-lob-line (org-babel-lob-get-info) (org-babel-get-src-block-name)))
|
(name (if on-lob-line (org-babel-lob-get-info) (org-babel-get-src-block-name)))
|
||||||
end head)
|
end head)
|
||||||
|
|
Loading…
Reference in New Issue