Dear all,

I set two different usages for remember, one is the plain remember, the other
is the org-remember.

(defun ww/plain ()
  "Writing diary or notes."
  (interactive)
  (setq remember-handler-functions 'nil)
  (remember))

(defun ww/schedule ()
  "Recoding tasks or appointments."
  (interactive)
  (setq org-remember-store-without-prompt t)
  (org-remember-insinuate)
  (org-remember))

After I run ww/schedule, the (remember) and ww/plain become a call of 
org-remember.
It seems (org-remember) will take over (remember). Can I change the behavior?


Best wishes,
Wei-Wei


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to