From mboxrd@z Thu Jan 1 00:00:00 1970 From: Reimar Finken Subject: Misspelled org-insert-todo-heading [Patch] Date: Thu, 16 Oct 2008 16:47:51 +0200 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KqU8r-0004Hd-Ab for emacs-orgmode@gnu.org; Thu, 16 Oct 2008 10:47:57 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KqU8q-0004HH-NV for emacs-orgmode@gnu.org; Thu, 16 Oct 2008 10:47:57 -0400 Received: from [199.232.76.173] (port=35097 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KqU8q-0004HC-Dt for emacs-orgmode@gnu.org; Thu, 16 Oct 2008 10:47:56 -0400 Received: from endor.theo2.physik.uni-stuttgart.de ([129.69.228.125]:4076) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KqU8p-0000Ud-Rd for emacs-orgmode@gnu.org; Thu, 16 Oct 2008 10:47:56 -0400 Received: from rhea.theo2.physik.uni-stuttgart.de (rhea.theo2.physik.uni-stuttgart.de [129.69.125.131]) by endor.theo2.physik.uni-stuttgart.de (Postfix) with ESMTP id DA2A12299E for ; Thu, 16 Oct 2008 16:47:51 +0200 (CEST) Received: from larissa.theo2.physik.uni-stuttgart.de.theo2.physik.uni-stuttgart.de (larissa.theo2.physik.uni-stuttgart.de [129.69.125.198]) by rhea.theo2.physik.uni-stuttgart.de (Postfix) with ESMTP id B8271711E for ; Thu, 16 Oct 2008 16:47:51 +0200 (CEST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Dear Carsten, In org-insert-todo-heading-respect-content from org.el, org-insert-todo-heading is mistakenly spelled org-insert-todo-todo-heading. I attached the trivial patch. At least I hope it works, since I am still learning git. If it doesn't work, I am sure you can work out the fix :-). Reimar --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Fixed-misspelled-org-insert-todo-heading.patch >From d752b4261c07a3da571dad22d2528157e509ac66 Mon Sep 17 00:00:00 2001 From: Reimar Finken Date: Thu, 16 Oct 2008 15:47:32 +0200 Subject: [PATCH] Fixed misspelled org-insert-todo-heading. --- lisp/org.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 2eb70dd..6d7c097 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -4676,7 +4676,7 @@ but create the new hedline after the current line." (defun org-insert-todo-heading-respect-content () (interactive) (let ((org-insert-heading-respect-content t)) - (call-interactively 'org-insert-todo-todo-heading))) + (call-interactively 'org-insert-todo-heading))) (defun org-insert-todo-heading (arg) "Insert a new heading with the same level and TODO state as current heading. -- 1.6.0.2 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable --=20 Dr. Reimar Finken (finken@theo2.physik.uni-stuttgart.de) II. Institut f=C3=BCr Theoretische Physik, Universit=C3=A4t Stuttgart=20=20 Pfaffenwaldring 57 Tel: 0711-68564924 70550 Stuttgart, Germany Fax: 0711-68564902 --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ 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 --=-=-=--