aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
authorPaul Eggert2017-08-13 11:54:46 -0700
committerPaul Eggert2017-08-13 11:55:12 -0700
commit5bdc97d55df30f6af107ddd136901983a7e2706a (patch)
treea85ddaf50d63b53e77cd98a527b84a4038fdace4 /lisp/org
parent8de2edd9ef8b4776fd7226de285c1d135b3e6938 (diff)
downloademacs-5bdc97d55df30f6af107ddd136901983a7e2706a.tar.gz
emacs-5bdc97d55df30f6af107ddd136901983a7e2706a.zip
Be consistent in spelling 'ok-if-already-exists'.
Diffstat (limited to 'lisp/org')
-rw-r--r--lisp/org/org-mobile.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/org-mobile.el b/lisp/org/org-mobile.el
index 12e6c84b3ce..9fee09f38e4 100644
--- a/lisp/org/org-mobile.el
+++ b/lisp/org/org-mobile.el
@@ -467,7 +467,7 @@ agenda view showing the flagged items."
467 (make-directory target-dir 'parents)) 467 (make-directory target-dir 'parents))
468 (if org-mobile-use-encryption 468 (if org-mobile-use-encryption
469 (org-mobile-encrypt-and-move file target-path) 469 (org-mobile-encrypt-and-move file target-path)
470 (copy-file file target-path 'ok-if-exists)) 470 (copy-file file target-path 'ok-if-already-exists))
471 (setq check (shell-command-to-string 471 (setq check (shell-command-to-string
472 (concat (shell-quote-argument org-mobile-checksum-binary) 472 (concat (shell-quote-argument org-mobile-checksum-binary)
473 " " 473 " "
@@ -687,7 +687,7 @@ encryption program does not understand them."
687 (let ((encfile (concat infile "_enc"))) 687 (let ((encfile (concat infile "_enc")))
688 (org-mobile-encrypt-file infile encfile) 688 (org-mobile-encrypt-file infile encfile)
689 (when outfile 689 (when outfile
690 (copy-file encfile outfile 'ok-if-exists) 690 (copy-file encfile outfile 'ok-if-already-exists)
691 (delete-file encfile)))) 691 (delete-file encfile))))
692 692
693(defun org-mobile-encrypt-file (infile outfile) 693(defun org-mobile-encrypt-file (infile outfile)