aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olson2007-11-01 15:39:59 +0000
committerMichael Olson2007-11-01 15:39:59 +0000
commit77210f1e45bf8c879a2c05ea998ed567a238e132 (patch)
tree3bf21b927ea9cc52c8ad9c3995291f9d27a8a16d
parent163a690118f56f1f728ef59fcc398909e7416421 (diff)
downloademacs-77210f1e45bf8c879a2c05ea998ed567a238e132.tar.gz
emacs-77210f1e45bf8c879a2c05ea998ed567a238e132.zip
Remove mentions of Planner in remember.el.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/textmodes/remember.el35
2 files changed, 16 insertions, 26 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3fe6f30b2c8..f50a7acbd92 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,7 @@
12007-11-01 Michael Olson <mwolson@gnu.org> 12007-11-01 Michael Olson <mwolson@gnu.org>
2 2
3 * textmodes/remember.el (remember-before-remember-hook): Turn into 3 * textmodes/remember.el: Improve documentation in heading.
4 a customizable option. 4 (remember-before-remember-hook): Turn into a customizable option.
5 (remember): Document INITIAL argument. 5 (remember): Document INITIAL argument.
6 (remember-region): Remove autoload cookie. Improve docstring to 6 (remember-region): Remove autoload cookie. Improve docstring to
7 mention that it is called from the *Remember* buffer, and does not 7 mention that it is called from the *Remember* buffer, and does not
@@ -12,6 +12,9 @@
12 (remember-destroy): Remove autoload cookie. 12 (remember-destroy): Remove autoload cookie.
13 (remember-mode-map): Define and initialize in one step. 13 (remember-mode-map): Define and initialize in one step.
14 (remember-mode): Improve docstring. 14 (remember-mode): Improve docstring.
15 (remember-annotation-functions): Default to just
16 '(buffer-file-name), and don't try to take the default value from
17 Planner.
15 18
162007-11-01 Glenn Morris <rgm@gnu.org> 192007-11-01 Glenn Morris <rgm@gnu.org>
17 20
diff --git a/lisp/textmodes/remember.el b/lisp/textmodes/remember.el
index ebc580283fa..775bc3ff6c8 100644
--- a/lisp/textmodes/remember.el
+++ b/lisp/textmodes/remember.el
@@ -28,7 +28,7 @@
28 28
29;;; Commentary: 29;;; Commentary:
30 30
31;; The idea 31;; * The idea
32;; 32;;
33;; Todo lists, schedules, phone databases... everything we use 33;; Todo lists, schedules, phone databases... everything we use
34;; databases for is really just a way to extend the power of our 34;; databases for is really just a way to extend the power of our
@@ -55,7 +55,7 @@
55;; should be as close to simply throwing the data at Emacs as 55;; should be as close to simply throwing the data at Emacs as
56;; possible. 56;; possible.
57;; 57;;
58;; Implementation 58;; * Implementation
59;; 59;;
60;; Hyperbole, as a data presentation tool, always struck me as being 60;; Hyperbole, as a data presentation tool, always struck me as being
61;; very powerful, but it seemed to require a lot of "front-end" work 61;; very powerful, but it seemed to require a lot of "front-end" work
@@ -97,7 +97,7 @@
97;; and user feedback will help to make this as intuitive a tool as 97;; and user feedback will help to make this as intuitive a tool as
98;; possible. 98;; possible.
99;; 99;;
100;; Future Goals 100;; * Future Goals
101;; 101;;
102;; This tool hopes to track (and by doing it with as little new code 102;; This tool hopes to track (and by doing it with as little new code
103;; as possible): 103;; as possible):
@@ -119,7 +119,7 @@
119;; - Storage of the data in a manner most appopriate to that data, 119;; - Storage of the data in a manner most appopriate to that data,
120;; such as keeping address-book type information in BBDB, etc. 120;; such as keeping address-book type information in BBDB, etc.
121;; 121;;
122;; Using "remember" 122;; * Using "remember"
123;; 123;;
124;; As a rough beginning, what I do is to keep my .notes file in 124;; As a rough beginning, what I do is to keep my .notes file in
125;; outline-mode format, with a final entry called "* Raw data". Then, 125;; outline-mode format, with a final entry called "* Raw data". Then,
@@ -128,19 +128,14 @@
128;; mechanism for shuffling data off to its appropriate corner of the 128;; mechanism for shuffling data off to its appropriate corner of the
129;; universe. 129;; universe.
130;; 130;;
131;; Mapping the remember functions to very accessible keystrokes 131;; To map the primary remember function to the keystroke F8, do the
132;; facilities using the mode: 132;; following.
133;; 133;;
134;; (autoload 'remember "remember" nil t) 134;; (autoload 'remember "remember" nil t)
135;; (autoload 'remember-region "remember" nil t)
136;; 135;;
137;; (define-key global-map [f8] 'remember) 136;; (define-key global-map [f8] 'remember)
138;; (define-key global-map [f9] 'remember-region)
139;; 137;;
140;; planner.el users should use `remember-to-planner' instead of `remember' 138;; * Feedback
141;; to save more context information.
142;;
143;; Feedback
144;; 139;;
145;; If Emacs could become a more intelligent data store, where 140;; If Emacs could become a more intelligent data store, where
146;; brainstorming would focus on the IDEAS involved -- rather than the 141;; brainstorming would focus on the IDEAS involved -- rather than the
@@ -227,16 +222,8 @@ called."
227 222
228;;; User Functions: 223;;; User Functions:
229 224
230;; People with planner.el can set this to planner-annotation-functions: 225(defcustom remember-annotation-functions '(buffer-file-name)
231;; (defvaralias 'remember-annotation-functions 'planner-annotation-functions) 226 "Hook that returns an annotation to be inserted into the remember buffer."
232;; or (defalias 'remember-annotation-functions 'planner-annotation-functions)
233(defcustom remember-annotation-functions
234 (if (boundp 'planner-annotation-functions)
235 planner-annotation-functions
236 '(buffer-file-name))
237 "Hook that returns an annotation to be inserted into the remember buffer.
238If you have planner.el, it's nice to set this to
239`planner-annotation-functions'."
240 :type 'hook 227 :type 'hook
241 :options '(org-remember-annotation buffer-file-name) 228 :options '(org-remember-annotation buffer-file-name)
242 :group 'remember) 229 :group 'remember)