Variable: remember-handler-functions
remember-handler-functions is a customizable variable defined in
remember.el.gz.
Value
(remember-append-to-file)
Documentation
Functions run to process remember data.
Each function is called with the current buffer narrowed to what the user wants remembered. If any function returns non-nil, the data is assumed to have been recorded somewhere by that function.
Probably introduced at or before Emacs version 24.4.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/remember.el.gz
(defcustom remember-handler-functions '(remember-append-to-file)
"Functions run to process remember data.
Each function is called with the current buffer narrowed to what the
user wants remembered.
If any function returns non-nil, the data is assumed to have been
recorded somewhere by that function."
:type 'hook
:options '(remember-store-in-mailbox
remember-append-to-file
remember-store-in-files
remember-diary-extract-entries
org-remember-handler))