summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Maus <dmaus@ictsoc.de>2011-07-10 19:30:40 +0200
committerDavid Maus <dmaus@ictsoc.de>2011-07-10 19:30:40 +0200
commit6b12ff2e2fdc576019abe5bd3cc98f276f3da467 (patch)
tree644715957fde4145c2ed9d55180005372484655f
parent52a14c5e2ed83942da7b4c20ba5bb732724fa368 (diff)
downloadorg-mode-6b12ff2e2fdc576019abe5bd3cc98f276f3da467.tar.gz
Fix docstrings, consistently refer to capture, not remember
* org-capture.el (org-capture-before-finalize-hook) (org-capture-after-finalize-hook, org-capture-mode-map) (org-capture-mode, org-capture-goto-last-stored): Fix docstring, consistently refer to capture, not remember.
-rw-r--r--lisp/org-capture.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/org-capture.el b/lisp/org-capture.el
index 57bde0c..d547f3d 100644
--- a/lisp/org-capture.el
+++ b/lisp/org-capture.el
@@ -328,8 +328,8 @@ calendar | %:type %:date"
((const :format "%v " :kill-buffer) (const t))))))))
(defcustom org-capture-before-finalize-hook nil
- "Hook that is run right before a remember process is finalized.
-The remember buffer is still current when this hook runs."
+ "Hook that is run right before a capture process is finalized.
+The capture buffer is still current when this hook runs."
:group 'org-capture
:type 'hook)
@@ -380,13 +380,13 @@ to avoid conflicts with other active capture processes."
(defvar org-capture-mode-map (make-sparse-keymap)
"Keymap for `org-capture-mode', a minor mode.
Use this map to set additional keybindings for when Org-mode is used
-for a Remember buffer.")
+for a capture buffer.")
(defvar org-capture-mode-hook nil
"Hook for the minor `org-capture-mode'.")
(define-minor-mode org-capture-mode
- "Minor mode for special key bindings in a remember buffer."
+ "Minor mode for special key bindings in a capture buffer."
nil " Rem" org-capture-mode-map
(org-set-local
'header-line-format
@@ -669,7 +669,7 @@ already gone. Any prefix argument will be passed to the refile command."
(org-capture-finalize)))
(defun org-capture-goto-last-stored ()
- "Go to the location where the last remember note was stored."
+ "Go to the location where the last capture note was stored."
(interactive)
(org-goto-marker-or-bmk org-capture-last-stored-marker
"org-capture-last-stored")