Merge branch 'maint'
This commit is contained in:
commit
4890801242
|
@ -467,7 +467,7 @@ agenda view showing the flagged items."
|
||||||
(make-directory target-dir 'parents))
|
(make-directory target-dir 'parents))
|
||||||
(if org-mobile-use-encryption
|
(if org-mobile-use-encryption
|
||||||
(org-mobile-encrypt-and-move file target-path)
|
(org-mobile-encrypt-and-move file target-path)
|
||||||
(copy-file file target-path 'ok-if-exists))
|
(copy-file file target-path 'ok-if-already-exists))
|
||||||
(setq check (shell-command-to-string
|
(setq check (shell-command-to-string
|
||||||
(concat (shell-quote-argument org-mobile-checksum-binary)
|
(concat (shell-quote-argument org-mobile-checksum-binary)
|
||||||
" "
|
" "
|
||||||
|
@ -687,7 +687,7 @@ encryption program does not understand them."
|
||||||
(let ((encfile (concat infile "_enc")))
|
(let ((encfile (concat infile "_enc")))
|
||||||
(org-mobile-encrypt-file infile encfile)
|
(org-mobile-encrypt-file infile encfile)
|
||||||
(when outfile
|
(when outfile
|
||||||
(copy-file encfile outfile 'ok-if-exists)
|
(copy-file encfile outfile 'ok-if-already-exists)
|
||||||
(delete-file encfile))))
|
(delete-file encfile))))
|
||||||
|
|
||||||
(defun org-mobile-encrypt-file (infile outfile)
|
(defun org-mobile-encrypt-file (infile outfile)
|
||||||
|
|
Loading…
Reference in New Issue