From mboxrd@z Thu Jan 1 00:00:00 1970 From: Edward DeMeulle Subject: Re: auto-fill non-op, fill-paragraph error Date: Fri, 28 Sep 2012 06:32:44 -0700 Message-ID: <87k3veclxf.fsf@demeulle.org> References: <87lig82jod.fsf@demeulle.org> <87a9wnaapw.fsf@bzg.ath.cx> <878vc7ifsb.fsf@demeulle.org> <87haqno75v.fsf@bzg.ath.cx> <87vcf3l9cu.fsf@bzg.ath.cx> <87a9wektfg.fsf@bzg.ath.cx> <87r4pouuly.fsf@demeulle.org> <87vcez6et8.fsf@bzg.ath.cx> <87r4pna6vc.fsf@demeulle.org> <87lifvmsru.fsf@demeulle.org> <87ipaz6tz8.fsf@bzg.ath.cx> <87obkqdd9z.fsf@demeulle.org> <878vbur6t5.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:44558) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THagg-0001JA-Sq for emacs-orgmode@gnu.org; Fri, 28 Sep 2012 09:33:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1THaga-0002BI-Ew for emacs-orgmode@gnu.org; Fri, 28 Sep 2012 09:33:02 -0400 Received: from plane.gmane.org ([80.91.229.3]:36120) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THaga-0002B8-7r for emacs-orgmode@gnu.org; Fri, 28 Sep 2012 09:32:56 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1THagd-0000Qk-PD for emacs-orgmode@gnu.org; Fri, 28 Sep 2012 15:32:59 +0200 Received: from pool-71-118-204-246.lsanca.dsl-w.verizon.net ([71.118.204.246]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 28 Sep 2012 15:32:59 +0200 Received: from ed by pool-71-118-204-246.lsanca.dsl-w.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 28 Sep 2012 15:32:59 +0200 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: emacs-orgmode@gnu.org org-element-parse-buffer is a Lisp function in `org-element.el'. (org-element-parse-buffer &optional GRANULARITY VISIBLE-ONLY) Recursively parse the buffer and return structure. If narrowing is in effect, only parse the visible part of the buffer. Optional argument GRANULARITY determines the depth of the recursion. It can be set to the following symbols: `headline' Only parse headlines. `greater-element' Don't recurse into greater elements excepted headlines and sections. Thus, elements parsed are the top-level ones. `element' Parse everything but objects and plain text. `object' Parse the complete buffer (default). When VISIBLE-ONLY is non-nil, don't parse contents of hidden elements. Assume buffer is in Org mode. --- org-fill-paragraph is an interactive compiled Lisp function in `org.el'. (org-fill-paragraph &optional JUSTIFY) Fill element at point, when applicable. This function only applies to comment blocks, comments, example blocks and paragraphs. Also, as a special case, re-align table when point is at one. If JUSTIFY is non-nil (interactively, with prefix argument), justify as well. If `sentence-end-double-space' is non-nil, then period followed by one space does not end a sentence, so don't break a line there. The variable `fill-column' controls the width for filling. For convenience, when point is at a plain list, an item or a footnote definition, try to fill the first paragraph within. [back]