]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove mentions of Planner in remember.el.
authorMichael Olson <mwolson@gnu.org>
Thu, 1 Nov 2007 15:39:59 +0000 (15:39 +0000)
committerMichael Olson <mwolson@gnu.org>
Thu, 1 Nov 2007 15:39:59 +0000 (15:39 +0000)
lisp/ChangeLog
lisp/textmodes/remember.el

index 3fe6f30b2c8914e0eefb9a78b8633d3f8c0e6505..f50a7acbd929048faef72b88fbd83cb97ad1c69a 100644 (file)
@@ -1,7 +1,7 @@
 2007-11-01  Michael Olson  <mwolson@gnu.org>
 
-       * textmodes/remember.el (remember-before-remember-hook): Turn into
-       a customizable option.
+       * textmodes/remember.el: Improve documentation in heading.
+       (remember-before-remember-hook): Turn into a customizable option.
        (remember): Document INITIAL argument.
        (remember-region): Remove autoload cookie.  Improve docstring to
        mention that it is called from the *Remember* buffer, and does not
@@ -12,6 +12,9 @@
        (remember-destroy): Remove autoload cookie.
        (remember-mode-map): Define and initialize in one step.
        (remember-mode): Improve docstring.
+       (remember-annotation-functions): Default to just
+       '(buffer-file-name), and don't try to take the default value from
+       Planner.
 
 2007-11-01  Glenn Morris  <rgm@gnu.org>
 
index ebc580283fa0c855c686f2048250b7577fb8a4fc..775bc3ff6c880ac204a6cd316af00ec2bd24f5c9 100644 (file)
@@ -28,7 +28,7 @@
 
 ;;; Commentary:
 
-;; The idea
+;; The idea
 ;;
 ;; Todo lists, schedules, phone databases... everything we use
 ;; databases for is really just a way to extend the power of our
@@ -55,7 +55,7 @@
 ;; should be as close to simply throwing the data at Emacs as
 ;; possible.
 ;;
-;; Implementation
+;; Implementation
 ;;
 ;; Hyperbole, as a data presentation tool, always struck me as being
 ;; very powerful, but it seemed to require a lot of "front-end" work
@@ -97,7 +97,7 @@
 ;; and user feedback will help to make this as intuitive a tool as
 ;; possible.
 ;;
-;; Future Goals
+;; Future Goals
 ;;
 ;; This tool hopes to track (and by doing it with as little new code
 ;; as possible):
 ;;  - Storage of the data in a manner most appopriate to that data,
 ;;    such as keeping address-book type information in BBDB, etc.
 ;;
-;; Using "remember"
+;; Using "remember"
 ;;
 ;; As a rough beginning, what I do is to keep my .notes file in
 ;; outline-mode format, with a final entry called "* Raw data".  Then,
 ;; mechanism for shuffling data off to its appropriate corner of the
 ;; universe.
 ;;
-;; Mapping the remember functions to very accessible keystrokes
-;; facilities using the mode:
+;; To map the primary remember function to the keystroke F8, do the
+;; following.
 ;;
-;;  (autoload 'remember "remember" nil t)
-;;  (autoload 'remember-region "remember" nil t)
+;;   (autoload 'remember "remember" nil t)
 ;;
-;;  (define-key global-map [f8] 'remember)
-;;  (define-key global-map [f9] 'remember-region)
+;;   (define-key global-map [f8] 'remember)
 ;;
-;; planner.el users should use `remember-to-planner' instead of `remember'
-;; to save more context information.
-;;
-;; Feedback
+;; * Feedback
 ;;
 ;; If Emacs could become a more intelligent data store, where
 ;; brainstorming would focus on the IDEAS involved -- rather than the
@@ -227,16 +222,8 @@ called."
 
 ;;; User Functions:
 
-;; People with planner.el can set this to planner-annotation-functions:
-;; (defvaralias 'remember-annotation-functions 'planner-annotation-functions)
-;; or (defalias 'remember-annotation-functions 'planner-annotation-functions)
-(defcustom remember-annotation-functions
-  (if (boundp 'planner-annotation-functions)
-      planner-annotation-functions
-    '(buffer-file-name))
-  "Hook that returns an annotation to be inserted into the remember buffer.
-If you have planner.el, it's nice to set this to
-`planner-annotation-functions'."
+(defcustom remember-annotation-functions '(buffer-file-name)
+  "Hook that returns an annotation to be inserted into the remember buffer."
   :type 'hook
   :options '(org-remember-annotation buffer-file-name)
   :group 'remember)