File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2005,7 +2005,7 @@ START-SRC and END-SRC delimit the actual source code."
20052005 (when (fboundp lang-mode)
20062006 (let ((string (buffer-substring-no-properties start-src end-src))
20072007 (modified (buffer-modified-p ))
2008- (adoc-buffer (current-buffer )) int )
2008+ (adoc-buffer (current-buffer )))
20092009 (remove-text-properties start-block end-block '(face nil adoc-code-block nil font-lock-fontified nil font-lock-multiline nil ))
20102010 (with-current-buffer
20112011 (get-buffer-create
@@ -2018,7 +2018,8 @@ START-SRC and END-SRC delimit the actual source code."
20182018 (insert string))
20192019 (unless (eq major-mode lang-mode) (funcall lang-mode))
20202020 (font-lock-ensure )
2021- (cl-loop for int being the intervals property 'face
2021+ (cl-loop for int = nil
2022+ for int being the intervals property 'face
20222023 for pos = (car int)
20232024 for next = (cdr int)
20242025 for val = (get-text-property pos 'face )
You can’t perform that action at this time.
0 commit comments