Variable: org-mobile-force-mobile-change

org-mobile-force-mobile-change is a customizable variable defined in org-mobile.el.gz.

Value

nil

Documentation

Non-nil means force the change made on the mobile device.

So even if there have been changes to the computer version of the entry, force the new value set on the mobile. When nil, mark the entry from the mobile with an error message. Instead of nil or t, this variable can also be a list of symbols, indicating the editing types for which the mobile version should always dominate.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-mobile.el.gz
(defcustom org-mobile-force-mobile-change nil
  "Non-nil means force the change made on the mobile device.
So even if there have been changes to the computer version of the entry,
force the new value set on the mobile.
When nil, mark the entry from the mobile with an error message.
Instead of nil or t, this variable can also be a list of symbols, indicating
the editing types for which the mobile version should always dominate."
  :group 'org-mobile
  :type '(choice
	  (const :tag "Always" t)
	  (const :tag "Never" nil)
	  (set :greedy t :tag "Specify"
	       (const todo)
	       (const tags)
	       (const priority)
	       (const heading)
	       (const body))))