Merge branch 'maint'
This commit is contained in:
commit
147cada506
|
@ -1199,14 +1199,14 @@ the file including them will be republished as well."
|
|||
(unless org-publish-cache
|
||||
(error
|
||||
"`org-publish-cache-file-needs-publishing' called, but no cache present"))
|
||||
(let* ((case-fold-search t)
|
||||
(key (org-publish-timestamp-filename filename pub-dir pub-func))
|
||||
(let* ((key (org-publish-timestamp-filename filename pub-dir pub-func))
|
||||
(pstamp (org-publish-cache-get key))
|
||||
(org-inhibit-startup t)
|
||||
(visiting (find-buffer-visiting filename))
|
||||
(buf (find-file-noselect (expand-file-name filename)))
|
||||
included-files-ctime)
|
||||
(when (equal (file-name-extension filename) "org")
|
||||
(let ((visiting (find-buffer-visiting filename))
|
||||
(buf (find-file-noselect filename))
|
||||
(case-fold-search t))
|
||||
(unwind-protect
|
||||
(with-current-buffer buf
|
||||
(goto-char (point-min))
|
||||
|
@ -1223,15 +1223,14 @@ the file including them will be republished as well."
|
|||
(org-unbracket-string
|
||||
"\"" "\""
|
||||
;; Ignore search suffix.
|
||||
(if (string-match "\\(::\\(.*?\\)\\)\"?\\'"
|
||||
m)
|
||||
(if (string-match "::.*?\"?\\'" m)
|
||||
(substring m 0 (match-beginning 0))
|
||||
m))))))))
|
||||
(when included-file
|
||||
(push (org-publish-cache-ctime-of-src
|
||||
(expand-file-name included-file))
|
||||
included-files-ctime)))))
|
||||
(unless visiting (kill-buffer buf))))
|
||||
(unless visiting (kill-buffer buf)))))
|
||||
(or (null pstamp)
|
||||
(let ((ctime (org-publish-cache-ctime-of-src filename)))
|
||||
(or (< pstamp ctime)
|
||||
|
|
Loading…
Reference in New Issue