summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2016-08-08 13:29:09 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2016-08-08 13:29:09 +0200
commit2538ffae65717e4d6a714e1d29f25fb75b5b4d18 (patch)
tree8760912d90da3cb8f4d1b42b07d413e62d5c68fd
parent9b5f964d716f1dcec3be4382381fedb6dda7de01 (diff)
downloadorg-mode-2538ffae65717e4d6a714e1d29f25fb75b5b4d18.tar.gz
org-mobile: Silence byte-compiler
* lisp/org-mobile.el (org-mobile-apply): Silence byte-compiler.
-rw-r--r--lisp/org-mobile.el29
1 files changed, 13 insertions, 16 deletions
diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el
index 00845d2..4a34681 100644
--- a/lisp/org-mobile.el
+++ b/lisp/org-mobile.el
@@ -822,18 +822,19 @@ If BEG and END are given, only do this in that region."
(id-pos (condition-case msg
(org-mobile-locate-entry (match-string 4))
(error (nth 1 msg))))
- (bos (point-at-bol))
+ (bos (line-beginning-position))
(eos (save-excursion (org-end-of-subtree t t)))
(cmd (if (equal action "")
- (lambda (_data _old _new)
- (cl-incf cnt-flag)
- (org-toggle-tag "FLAGGED" 'on)
- (when note
- (org-entry-put nil "THEFLAGGINGNOTE" note)))
+ (let ((note (buffer-substring-no-properties
+ (line-beginning-position 2) eos)))
+ (lambda (_data _old _new)
+ (cl-incf cnt-flag)
+ (org-toggle-tag "FLAGGED" 'on)
+ (org-entry-put
+ nil "THEFLAGGINGNOTE"
+ (replace-regexp-in-string "\n" "\\\\n" note))))
(cl-incf cnt-edit)
(cdr (assoc action org-mobile-action-alist))))
- (note (and (equal action "")
- (buffer-substring (1+ (point-at-eol)) eos)))
;; Do not take notes interactively.
(org-inhibit-logging 'note)
old new)
@@ -867,11 +868,6 @@ If BEG and END are given, only do this in that region."
(point)))))
(setq old (org-string-nw-p old))
(setq new (org-string-nw-p new))
- (if (and note (> (length note) 0))
- ;; Make Note into a single line, to fit into a property
- (setq note (mapconcat 'identity
- (org-split-string (org-trim note) "\n")
- "\\n")))
(unless (equal data "body")
(setq new (and new (org-trim new)))
(setq old (and old (org-trim old))))
@@ -882,7 +878,8 @@ If BEG and END are given, only do this in that region."
(condition-case msg
(org-with-point-at id-pos
(funcall cmd data old new)
- (unless (member data '("delete" "archive" "archive-sibling" "addheading"))
+ (unless (member data '("delete" "archive" "archive-sibling"
+ "addheading"))
(when (member "FLAGGED" (org-get-tags))
(add-to-list 'org-mobile-last-flagged-files
(buffer-file-name)))))
@@ -903,8 +900,8 @@ If BEG and END are given, only do this in that region."
(save-buffer)
(move-marker marker nil)
(move-marker end nil)
- (message "%d new, %d edits, %d flags, %d errors" cnt-new
- cnt-edit cnt-flag cnt-error)
+ (message "%d new, %d edits, %d flags, %d errors"
+ cnt-new cnt-edit cnt-flag cnt-error)
(sit-for 1)))
(defun org-mobile-timestamp-buffer (buf)