From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kyle Meyer Subject: [PATCH] org.el (org-adapt-indentation): Fix typo Date: Sat, 01 Nov 2014 18:01:18 -0400 Message-ID: <87k33ebmxd.fsf@kyleam.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47618) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xkgjf-0007Og-CT for emacs-orgmode@gnu.org; Sat, 01 Nov 2014 18:01:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XkgjZ-0005SZ-Ur for emacs-orgmode@gnu.org; Sat, 01 Nov 2014 18:01:27 -0400 Received: from mail-qg0-f54.google.com ([209.85.192.54]:45335) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XkgjZ-0005ST-Pn for emacs-orgmode@gnu.org; Sat, 01 Nov 2014 18:01:21 -0400 Received: by mail-qg0-f54.google.com with SMTP id q108so7075868qgd.41 for ; Sat, 01 Nov 2014 15:01:20 -0700 (PDT) Received: from localhost (nat-130-132-173-5.central.yale.edu. [130.132.173.5]) by mx.google.com with ESMTPSA id k4sm13030184qaf.0.2014.11.01.15.01.19 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 01 Nov 2014 15:01:19 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org-mode --=-=-= Content-Type: text/plain Hello, A patch for a minor docstring typo is attached. Thanks, Kyle --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-org.el-org-adapt-indentation-Fix-typo.patch >From 21dc34060c939b862b2e926f5aa68d5e97e53cbf Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sat, 1 Nov 2014 17:45:11 -0400 Subject: [PATCH] org.el (org-adapt-indentation): Fix typo * lisp/org.el (org-adapt-indentation): Fix typo in docstring. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 84b0786..1b17d2c 100755 --- a/lisp/org.el +++ b/lisp/org.el @@ -1470,7 +1470,7 @@ (defcustom org-adapt-indentation t body starts with text at column 0, indentation is not changed at all. - Property drawers and planning information is inserted indented when - this variable s set. When nil, they will not be indented. + this variable is set. When nil, they will not be indented. - TAB indents a line relative to context. The lines below a headline will be indented when this variable is set. -- 2.1.3 --=-=-=--