emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH] Fix spelling in variable documentation
@ 2008-11-14 17:58 Bernt Hansen
  2008-11-14 21:33 ` Carsten Dominik
  2008-11-14 21:43 ` Carsten Dominik
  0 siblings, 2 replies; 4+ messages in thread
From: Bernt Hansen @ 2008-11-14 17:58 UTC (permalink / raw)
  To: emacs-orgmode

 - org-remember-store-without-prompt
---

Minor typo fix in the documentation.  This is available on the
git://git.norang.ca/org-mode repository on the 'for-carsten' branch.

You can cherry pick commits easily with gitk as follows:

$ git checkout master
$ git fetch git://git.norang.ca/org-mode for-carsten
$ gitk master FETCH_HEAD

Then right-click on the commits on FETCH_HEAD and select 'Cherry-pick
this commit' from the menu.  This adds the commit to your current
(master) branch.

Regards,
Bernt

 lisp/org-remember.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lisp/org-remember.el b/lisp/org-remember.el
index 41927f3..40d3b19 100644
--- a/lisp/org-remember.el
+++ b/lisp/org-remember.el
@@ -54,7 +54,7 @@
 (defcustom org-remember-store-without-prompt t
   "Non-nil means, `C-c C-c' stores remember note without further prompts.
 It then uses the file and headline specified by the template or (if the
-themplate does not specify them) by the variables `org-default-notes-file'
+template does not specify them) by the variables `org-default-notes-file'
 and `org-remember-default-headline'.  To force prompting anyway, use 
 `C-u C-c C-c' to file the note.
 
-- 
1.6.0.4.608.ga9645

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Fix spelling in variable documentation
  2008-11-14 17:58 [PATCH] Fix spelling in variable documentation Bernt Hansen
@ 2008-11-14 21:33 ` Carsten Dominik
  2008-11-14 21:37   ` Bernt Hansen
  2008-11-14 21:43 ` Carsten Dominik
  1 sibling, 1 reply; 4+ messages in thread
From: Carsten Dominik @ 2008-11-14 21:33 UTC (permalink / raw)
  To: Bernt Hansen; +Cc: emacs-orgmode


On Nov 14, 2008, at 6:58 PM, Bernt Hansen wrote:

> - org-remember-store-without-prompt
> ---
>
> Minor typo fix in the documentation.  This is available on the
> git://git.norang.ca/org-mode repository on the 'for-carsten' branch.
>
> You can cherry pick commits easily with gitk as follows:
>
> $ git checkout master
> $ git fetch git://git.norang.ca/org-mode for-carsten
> $ gitk master FETCH_HEAD
>
> Then right-click on the commits on FETCH_HEAD and select 'Cherry-pick
> this commit' from the menu.  This adds the commit to your current
> (master) branch.

To the master?  No matter on which branch I am?  Or will it be added  
to the current HEAD?

This is an awesome feature.  Git is incredible.

- Carsten

>
>
> Regards,
> Bernt
>
> lisp/org-remember.el |    2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/lisp/org-remember.el b/lisp/org-remember.el
> index 41927f3..40d3b19 100644
> --- a/lisp/org-remember.el
> +++ b/lisp/org-remember.el
> @@ -54,7 +54,7 @@
> (defcustom org-remember-store-without-prompt t
>   "Non-nil means, `C-c C-c' stores remember note without further  
> prompts.
> It then uses the file and headline specified by the template or (if  
> the
> -themplate does not specify them) by the variables `org-default- 
> notes-file'
> +template does not specify them) by the variables `org-default-notes- 
> file'
> and `org-remember-default-headline'.  To force prompting anyway, use
> `C-u C-c C-c' to file the note.
>
> -- 
> 1.6.0.4.608.ga9645
>
>
>
> _______________________________________________
> 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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Fix spelling in variable documentation
  2008-11-14 21:33 ` Carsten Dominik
@ 2008-11-14 21:37   ` Bernt Hansen
  0 siblings, 0 replies; 4+ messages in thread
From: Bernt Hansen @ 2008-11-14 21:37 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode

Carsten Dominik <dominik@science.uva.nl> writes:

> On Nov 14, 2008, at 6:58 PM, Bernt Hansen wrote:
>
>> - org-remember-store-without-prompt
>> ---
>>
>> Minor typo fix in the documentation.  This is available on the
>> git://git.norang.ca/org-mode repository on the 'for-carsten' branch.
>>
>> You can cherry pick commits easily with gitk as follows:
>>
>> $ git checkout master
>> $ git fetch git://git.norang.ca/org-mode for-carsten
>> $ gitk master FETCH_HEAD
>>
>> Then right-click on the commits on FETCH_HEAD and select 'Cherry-pick
>> this commit' from the menu.  This adds the commit to your current
>> (master) branch.
>
> To the master?  No matter on which branch I am?  Or will it be added
> to the current HEAD?
>
> This is an awesome feature.  Git is incredible.

It cherry picks to your current branch HEAD.  You can checkout different
branches in gitk by right-clicking on the branch tag.  You can also
create tags, and do various other useful operations.

You can also cherry pick manually with

$ git cherry-pick FETCH_HEAD^

There's nothing really special about the 'master' branch.  It's just a
name and most repositories have a master branch - but you don't have to
have one of those.  You can delete it, rename it to something else,
whatever - it's just a name.

Regards,
Bernt

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Fix spelling in variable documentation
  2008-11-14 17:58 [PATCH] Fix spelling in variable documentation Bernt Hansen
  2008-11-14 21:33 ` Carsten Dominik
@ 2008-11-14 21:43 ` Carsten Dominik
  1 sibling, 0 replies; 4+ messages in thread
From: Carsten Dominik @ 2008-11-14 21:43 UTC (permalink / raw)
  To: Bernt Hansen; +Cc: emacs-orgmode

I have applied this fix, thanks.

- Carsten

On Nov 14, 2008, at 6:58 PM, Bernt Hansen wrote:

> - org-remember-store-without-prompt
> ---
>
> Minor typo fix in the documentation.  This is available on the
> git://git.norang.ca/org-mode repository on the 'for-carsten' branch.
>
> You can cherry pick commits easily with gitk as follows:
>
> $ git checkout master
> $ git fetch git://git.norang.ca/org-mode for-carsten
> $ gitk master FETCH_HEAD
>
> Then right-click on the commits on FETCH_HEAD and select 'Cherry-pick
> this commit' from the menu.  This adds the commit to your current
> (master) branch.
>
> Regards,
> Bernt
>
> lisp/org-remember.el |    2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/lisp/org-remember.el b/lisp/org-remember.el
> index 41927f3..40d3b19 100644
> --- a/lisp/org-remember.el
> +++ b/lisp/org-remember.el
> @@ -54,7 +54,7 @@
> (defcustom org-remember-store-without-prompt t
>   "Non-nil means, `C-c C-c' stores remember note without further  
> prompts.
> It then uses the file and headline specified by the template or (if  
> the
> -themplate does not specify them) by the variables `org-default- 
> notes-file'
> +template does not specify them) by the variables `org-default-notes- 
> file'
> and `org-remember-default-headline'.  To force prompting anyway, use
> `C-u C-c C-c' to file the note.
>
> -- 
> 1.6.0.4.608.ga9645
>
>
>
> _______________________________________________
> 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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-11-14 21:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-14 17:58 [PATCH] Fix spelling in variable documentation Bernt Hansen
2008-11-14 21:33 ` Carsten Dominik
2008-11-14 21:37   ` Bernt Hansen
2008-11-14 21:43 ` Carsten Dominik

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).