From 10169054eb9c4cf8c03f727afdadf13659a7c470 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 25 May 2013 17:07:38 +0200 Subject: [PATCH] org-element: Fix a docstring * lisp/org-element.el (org-element--remove-indentation): Fix docstring. --- lisp/org-element.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/org-element.el b/lisp/org-element.el index 698867826..dc2a8e21c 100644 --- a/lisp/org-element.el +++ b/lisp/org-element.el @@ -1650,10 +1650,10 @@ CONTENTS is nil." (defun org-element--remove-indentation (s &optional n) "Remove maximum common indentation in string S and return it. -When N is a positive integer, remove exactly that indentation, -possible, or return S as-is otherwise. Unlike to -`org-remove-indentation', this function doesn't call `untabify' -on S first." +When optional argument N is a positive integer, remove exactly +that much characters from indentation, if possible, or return +S as-is otherwise. Unlike to `org-remove-indentation', this +function doesn't call `untabify' on S." (catch 'exit (with-temp-buffer (insert s) -- 2.11.4.GIT