* How do I include text between a range of line numbers with #INCLUDE @ 2011-01-07 4:33 Venkatesh Choppella 2011-01-07 7:59 ` [PATCH] " Puneeth 0 siblings, 1 reply; 8+ messages in thread From: Venkatesh Choppella @ 2011-01-07 4:33 UTC (permalink / raw) To: emacs-orgmode I would like to include a part of a file (between a given range of line numbers) instead of the whole file. Is there a way to do that in org-mode? Sincerely, - venkatesh ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] How do I include text between a range of line numbers with #INCLUDE 2011-01-07 4:33 How do I include text between a range of line numbers with #INCLUDE Venkatesh Choppella @ 2011-01-07 7:59 ` Puneeth 2011-01-07 14:32 ` Carsten Dominik 2011-01-08 18:05 ` Carsten Dominik 0 siblings, 2 replies; 8+ messages in thread From: Puneeth @ 2011-01-07 7:59 UTC (permalink / raw) To: Venkatesh Choppella; +Cc: emacs-orgmode [-- Attachment #1: Type: text/plain, Size: 683 bytes --] On Fri, Jan 7, 2011 at 10:03 AM, Venkatesh Choppella <venkatesh.choppella@iiit.ac.in> wrote: > I would like to include a part of a file (between a given range of > line numbers) instead of the whole file. Is there a way to do that in > org-mode? It isn't possible to include files using line numbers, as of now. Here's a quick patch that would add this feature. I have tested it with small files and works fine. Can somebody tell me if it looks good? :lines "5-10" will include the lines from 5 to 10, 10 excluded. :lines "-10" will include the lines from 1 to 10, 10 excluded. :lines "5-" will include the lines from 1 to the end of the file. HTH, Puneeth [-- Attachment #2: patch-include-lines.diff.txt --] [-- Type: text/plain, Size: 2799 bytes --] diff --git a/lisp/org-exp.el b/lisp/org-exp.el index 3d466fa..5afa266 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -2130,13 +2130,14 @@ TYPE must be a string, any of: (defun org-export-handle-include-files () "Include the contents of include files, with proper formatting." (let ((case-fold-search t) - params file markup lang start end prefix prefix1 switches all minlevel) + params file markup lang start end prefix prefix1 switches all minlevel lines) (goto-char (point-min)) (while (re-search-forward "^#\\+INCLUDE:?[ \t]+\\(.*\\)" nil t) (setq params (read (concat "(" (match-string 1) ")")) prefix (org-get-and-remove-property 'params :prefix) prefix1 (org-get-and-remove-property 'params :prefix1) minlevel (org-get-and-remove-property 'params :minlevel) + lines (org-get-and-remove-property 'params :lines) file (org-symname-or-string (pop params)) markup (org-symname-or-string (pop params)) lang (and (member markup '("src" "SRC")) @@ -2159,7 +2160,7 @@ TYPE must be a string, any of: end (format "#+end_%s" markup)))) (insert (or start "")) (insert (org-get-file-contents (expand-file-name file) - prefix prefix1 markup minlevel)) + prefix prefix1 markup minlevel lines)) (or (bolp) (newline)) (insert (or end "")))) all)) @@ -2176,15 +2177,32 @@ TYPE must be a string, any of: (when intersection (error "Recursive #+INCLUDE: %S" intersection)))))) -(defun org-get-file-contents (file &optional prefix prefix1 markup minlevel) +(defun org-get-file-contents (file &optional prefix prefix1 markup minlevel lines) "Get the contents of FILE and return them as a string. If PREFIX is a string, prepend it to each line. If PREFIX1 is a string, prepend it to the first line instead of PREFIX. If MARKUP, don't protect org-like lines, the exporter will -take care of the block they are in." +take care of the block they are in. You can include a part +of a file by specifying a range of line numbers, \"P-Q\" +which includes lines from P to Q, excluding Q. P and/or Q +may be ommitted to assume the obvious defaults." (if (stringp markup) (setq markup (downcase markup))) (with-temp-buffer (insert-file-contents file) + (when lines + (let (beg end) + (setq lines (split-string lines "-") + beg (if (string= "" (car lines)) + (point-min) + (goto-char (point-min)) + (forward-line (1- (string-to-number (car lines)))) + (point)) + end (if (string= "" (cadr lines)) + (point-max) + (goto-char (point-min)) + (forward-line (1- (string-to-number (cadr lines)))) + (point))) + (narrow-to-region beg end))) (when (or prefix prefix1) (goto-char (point-min)) (while (not (eobp)) [-- Attachment #3: Type: text/plain, Size: 201 bytes --] _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] How do I include text between a range of line numbers with #INCLUDE 2011-01-07 7:59 ` [PATCH] " Puneeth @ 2011-01-07 14:32 ` Carsten Dominik 2011-01-08 18:05 ` Carsten Dominik 1 sibling, 0 replies; 8+ messages in thread From: Carsten Dominik @ 2011-01-07 14:32 UTC (permalink / raw) To: Puneeth; +Cc: Venkatesh Choppella, emacs-orgmode The patch looks OK to me. However, line numers are notorioously bad references.... - Carsten On Jan 7, 2011, at 8:59 AM, Puneeth wrote: > On Fri, Jan 7, 2011 at 10:03 AM, Venkatesh Choppella > <venkatesh.choppella@iiit.ac.in> wrote: >> I would like to include a part of a file (between a given range of >> line numbers) instead of the whole file. Is there a way to do that >> in >> org-mode? > > It isn't possible to include files using line numbers, as of now. > Here's a quick patch that would add this feature. I have tested it > with small files and works fine. Can somebody tell me if it looks > good? > > :lines "5-10" will include the lines from 5 to 10, 10 excluded. > :lines "-10" will include the lines from 1 to 10, 10 excluded. > :lines "5-" will include the lines from 1 to the end of the file. > > HTH, > Puneeth > <patch-include- > lines.diff.txt>_______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode - Carsten ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] How do I include text between a range of line numbers with #INCLUDE 2011-01-07 7:59 ` [PATCH] " Puneeth 2011-01-07 14:32 ` Carsten Dominik @ 2011-01-08 18:05 ` Carsten Dominik 2011-01-08 19:28 ` Puneeth 1 sibling, 1 reply; 8+ messages in thread From: Carsten Dominik @ 2011-01-08 18:05 UTC (permalink / raw) To: Puneeth; +Cc: Venkatesh Choppella, emacs-orgmode Hi Puneeth, can cou please augment the patch with a propert ChangeLog-like entry, and with documentation for the manual, and then resubmit? Thanks. - Carsten On Jan 7, 2011, at 8:59 AM, Puneeth wrote: > On Fri, Jan 7, 2011 at 10:03 AM, Venkatesh Choppella > <venkatesh.choppella@iiit.ac.in> wrote: >> I would like to include a part of a file (between a given range of >> line numbers) instead of the whole file. Is there a way to do that >> in >> org-mode? > > It isn't possible to include files using line numbers, as of now. > Here's a quick patch that would add this feature. I have tested it > with small files and works fine. Can somebody tell me if it looks > good? > > :lines "5-10" will include the lines from 5 to 10, 10 excluded. > :lines "-10" will include the lines from 1 to 10, 10 excluded. > :lines "5-" will include the lines from 1 to the end of the file. > > HTH, > Puneeth > <patch-include- > lines.diff.txt>_______________________________________________ > Emacs-orgmode mailing list > Please 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] 8+ messages in thread
* Re: [PATCH] How do I include text between a range of line numbers with #INCLUDE 2011-01-08 18:05 ` Carsten Dominik @ 2011-01-08 19:28 ` Puneeth 2011-01-18 0:26 ` [Accepted] " Bastien Guerry 2011-01-18 0:48 ` [PATCH] " Bastien 0 siblings, 2 replies; 8+ messages in thread From: Puneeth @ 2011-01-08 19:28 UTC (permalink / raw) To: Carsten Dominik; +Cc: Venkatesh Choppella, emacs-orgmode [-- Attachment #1: Type: text/plain, Size: 470 bytes --] Hi Carsten, On Sat, Jan 8, 2011 at 11:35 PM, Carsten Dominik <carsten.dominik@gmail.com> wrote: > Hi Puneeth, > > can cou please augment the patch with a propert ChangeLog-like entry, and > with documentation for the manual, and then resubmit? Here is a patch with a ChangeLog entry and documentation for the manual. Please tell me if it looks OK. Also, I hope using git-format-patch is the right way to send this page. If not, what is the right way? Thanks, Puneeth [-- Attachment #2: 0001-Include-only-specified-range-of-line-numbers-of-a-fi.patch --] [-- Type: text/x-diff, Size: 4830 bytes --] From 4a9be5b1a7a19c5d092ed14a86d29ad83122e9a8 Mon Sep 17 00:00:00 2001 From: Puneeth Chaganti <punchagan@gmail.com> Date: Sun, 9 Jan 2011 00:48:51 +0530 Subject: [PATCH] Include only specified range of line numbers of a file * doc/org.texi (Include files): Document :lines. * lisp/org-exp.el (org-export-handle-include-files): Support :lines property. (org-get-file-contents): New argument lines to include specify a range of lines to include. On Fri, Jan 7, 2011 at 1:29 PM, Puneeth <punchagan@gmail.com> wrote: > On Fri, Jan 7, 2011 at 10:03 AM, Venkatesh Choppella > <venkatesh.choppella@iiit.ac.in> wrote: >> I would like to include a part of a file (between a given range of >> line numbers) instead of the whole file. Is there a way to do that >> in org-mode? > > It isn't possible to include files using line numbers, as of now. > Here's a quick patch that would add this feature. I have tested it > with small files and works fine. Can somebody tell me if it looks > good? > > :lines "5-10" will include the lines from 5 to 10, 10 excluded. > :lines "-10" will include the lines from 1 to 10, 10 excluded. > :lines "5-" will include the lines from 1 to the end of the file. > > HTH, > Puneeth --- doc/org.texi | 11 +++++++++++ lisp/org-exp.el | 24 ++++++++++++++++++++---- 2 files changed, 31 insertions(+), 4 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index e83909d..62f90e9 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -8891,6 +8891,17 @@ use #+INCLUDE: "~/snippets/xx" :prefix1 " + " :prefix " " @end example +You can also include a portion of a file, by specifying a range of line +numbers using the @code{:lines} parameter. The line with the line number +equal to the end of the range, will not be included. The start or/and the +end limits of the range, may be omitted to use the obvious defaults. + +@example +#+INCLUDE: "~/.emacs" :lines "5-10" @r{Include lines 5 to 10, 10 excluded} +#+INCLUDE: "~/.emacs" :lines "-10" @r{Include lines 1 to 10, 10 excluded} +#+INCLUDE: "~/.emacs" :lines "10-" @r{Include lines from 10 to EOF} +@end example + @table @kbd @kindex C-c ' @item C-c ' diff --git a/lisp/org-exp.el b/lisp/org-exp.el index 3d466fa..ea81386 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -2130,13 +2130,14 @@ TYPE must be a string, any of: (defun org-export-handle-include-files () "Include the contents of include files, with proper formatting." (let ((case-fold-search t) - params file markup lang start end prefix prefix1 switches all minlevel) + params file markup lang start end prefix prefix1 switches all minlevel lines) (goto-char (point-min)) (while (re-search-forward "^#\\+INCLUDE:?[ \t]+\\(.*\\)" nil t) (setq params (read (concat "(" (match-string 1) ")")) prefix (org-get-and-remove-property 'params :prefix) prefix1 (org-get-and-remove-property 'params :prefix1) minlevel (org-get-and-remove-property 'params :minlevel) + lines (org-get-and-remove-property 'params :lines) file (org-symname-or-string (pop params)) markup (org-symname-or-string (pop params)) lang (and (member markup '("src" "SRC")) @@ -2159,7 +2160,7 @@ TYPE must be a string, any of: end (format "#+end_%s" markup)))) (insert (or start "")) (insert (org-get-file-contents (expand-file-name file) - prefix prefix1 markup minlevel)) + prefix prefix1 markup minlevel lines)) (or (bolp) (newline)) (insert (or end "")))) all)) @@ -2176,15 +2177,30 @@ TYPE must be a string, any of: (when intersection (error "Recursive #+INCLUDE: %S" intersection)))))) -(defun org-get-file-contents (file &optional prefix prefix1 markup minlevel) +(defun org-get-file-contents (file &optional prefix prefix1 markup minlevel lines) "Get the contents of FILE and return them as a string. If PREFIX is a string, prepend it to each line. If PREFIX1 is a string, prepend it to the first line instead of PREFIX. If MARKUP, don't protect org-like lines, the exporter will -take care of the block they are in." +take care of the block they are in. If LINES is a string, +include only the lines specified." (if (stringp markup) (setq markup (downcase markup))) (with-temp-buffer (insert-file-contents file) + (when lines + (let (beg end) + (setq lines (split-string lines "-") + beg (if (string= "" (car lines)) + (point-min) + (goto-char (point-min)) + (forward-line (1- (string-to-number (car lines)))) + (point)) + end (if (string= "" (cadr lines)) + (point-max) + (goto-char (point-min)) + (forward-line (1- (string-to-number (cadr lines)))) + (point))) + (narrow-to-region beg end))) (when (or prefix prefix1) (goto-char (point-min)) (while (not (eobp)) -- 1.7.1 [-- Attachment #3: Type: text/plain, Size: 201 bytes --] _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Accepted] How do I include text between a range of line numbers with #INCLUDE 2011-01-08 19:28 ` Puneeth @ 2011-01-18 0:26 ` Bastien Guerry 2011-01-18 0:48 ` [PATCH] " Bastien 1 sibling, 0 replies; 8+ messages in thread From: Bastien Guerry @ 2011-01-18 0:26 UTC (permalink / raw) To: emacs-orgmode Patch 529 (http://patchwork.newartisans.com/patch/529/) is now "Accepted". Maintainer comment: Added some cosmetic changes and a small rewrite of the doc This relates to the following submission: http://mid.gmane.org/%3CAANLkTi%3DEBSvP9ukR5LRJQxBk%2BDaBHK4vyM0pvdr%3D9-JR%40mail.gmail.com%3E Here is the original message containing the patch: > Content-Type: text/plain; charset="utf-8" > MIME-Version: 1.0 > Content-Transfer-Encoding: 7bit > Subject: [Orgmode] How do I include text between a range of line numbers with > #INCLUDE > Date: Sun, 09 Jan 2011 00:28:01 -0000 > From: Puneeth Chaganti <punchagan@gmail.com> > X-Patchwork-Id: 529 > Message-Id: <AANLkTi=EBSvP9ukR5LRJQxBk+DaBHK4vyM0pvdr=9-JR@mail.gmail.com> > To: Carsten Dominik <carsten.dominik@gmail.com> > Cc: Venkatesh Choppella <venkatesh.choppella@iiit.ac.in>, emacs-orgmode@gnu.org > > Hi Carsten, > > On Sat, Jan 8, 2011 at 11:35 PM, Carsten Dominik > <carsten.dominik@gmail.com> wrote: > > Hi Puneeth, > > > > can cou please augment the patch with a propert ChangeLog-like entry, and > > with documentation for the manual, and then resubmit? > > Here is a patch with a ChangeLog entry and documentation for the > manual. Please tell me if it looks OK. Also, I hope using > git-format-patch is the right way to send this page. If not, what is > the right way? > > Thanks, > Puneeth > > > >From 4a9be5b1a7a19c5d092ed14a86d29ad83122e9a8 Mon Sep 17 00:00:00 2001 > From: Puneeth Chaganti <punchagan@gmail.com> > Date: Sun, 9 Jan 2011 00:48:51 +0530 > Subject: [PATCH] Include only specified range of line numbers of a file > > * doc/org.texi (Include files): Document :lines. > * lisp/org-exp.el (org-export-handle-include-files): Support :lines > property. > (org-get-file-contents): New argument lines to include specify a range > of lines to include. > > On Fri, Jan 7, 2011 at 1:29 PM, Puneeth <punchagan@gmail.com> wrote: > > On Fri, Jan 7, 2011 at 10:03 AM, Venkatesh Choppella > > <venkatesh.choppella@iiit.ac.in> wrote: > >> I would like to include a part of a file (between a given range of > >> line numbers) instead of the whole file. Is there a way to do that > >> in org-mode? > > > > It isn't possible to include files using line numbers, as of now. > > Here's a quick patch that would add this feature. I have tested it > > with small files and works fine. Can somebody tell me if it looks > > good? > > > > :lines "5-10" will include the lines from 5 to 10, 10 excluded. > > :lines "-10" will include the lines from 1 to 10, 10 excluded. > > :lines "5-" will include the lines from 1 to the end of the file. > > > > HTH, > > Puneeth > --- > doc/org.texi | 11 +++++++++++ > lisp/org-exp.el | 24 ++++++++++++++++++++---- > 2 files changed, 31 insertions(+), 4 deletions(-) > > diff --git a/doc/org.texi b/doc/org.texi > index e83909d..62f90e9 100644 > --- a/doc/org.texi > +++ b/doc/org.texi > @@ -8891,6 +8891,17 @@ use > #+INCLUDE: "~/snippets/xx" :prefix1 " + " :prefix " " > @end example > > +You can also include a portion of a file, by specifying a range of line > +numbers using the @code{:lines} parameter. The line with the line number > +equal to the end of the range, will not be included. The start or/and the > +end limits of the range, may be omitted to use the obvious defaults. > + > +@example > +#+INCLUDE: "~/.emacs" :lines "5-10" @r{Include lines 5 to 10, 10 excluded} > +#+INCLUDE: "~/.emacs" :lines "-10" @r{Include lines 1 to 10, 10 excluded} > +#+INCLUDE: "~/.emacs" :lines "10-" @r{Include lines from 10 to EOF} > +@end example > + > @table @kbd > @kindex C-c ' > @item C-c ' > diff --git a/lisp/org-exp.el b/lisp/org-exp.el > index 3d466fa..ea81386 100644 > --- a/lisp/org-exp.el > +++ b/lisp/org-exp.el > @@ -2130,13 +2130,14 @@ TYPE must be a string, any of: > (defun org-export-handle-include-files () > "Include the contents of include files, with proper formatting." > (let ((case-fold-search t) > - params file markup lang start end prefix prefix1 switches all minlevel) > + params file markup lang start end prefix prefix1 switches all minlevel lines) > (goto-char (point-min)) > (while (re-search-forward "^#\\+INCLUDE:?[ \t]+\\(.*\\)" nil t) > (setq params (read (concat "(" (match-string 1) ")")) > prefix (org-get-and-remove-property 'params :prefix) > prefix1 (org-get-and-remove-property 'params :prefix1) > minlevel (org-get-and-remove-property 'params :minlevel) > + lines (org-get-and-remove-property 'params :lines) > file (org-symname-or-string (pop params)) > markup (org-symname-or-string (pop params)) > lang (and (member markup '("src" "SRC")) > @@ -2159,7 +2160,7 @@ TYPE must be a string, any of: > end (format "#+end_%s" markup)))) > (insert (or start "")) > (insert (org-get-file-contents (expand-file-name file) > - prefix prefix1 markup minlevel)) > + prefix prefix1 markup minlevel lines)) > (or (bolp) (newline)) > (insert (or end "")))) > all)) > @@ -2176,15 +2177,30 @@ TYPE must be a string, any of: > (when intersection > (error "Recursive #+INCLUDE: %S" intersection)))))) > > -(defun org-get-file-contents (file &optional prefix prefix1 markup minlevel) > +(defun org-get-file-contents (file &optional prefix prefix1 markup minlevel lines) > "Get the contents of FILE and return them as a string. > If PREFIX is a string, prepend it to each line. If PREFIX1 > is a string, prepend it to the first line instead of PREFIX. > If MARKUP, don't protect org-like lines, the exporter will > -take care of the block they are in." > +take care of the block they are in. If LINES is a string, > +include only the lines specified." > (if (stringp markup) (setq markup (downcase markup))) > (with-temp-buffer > (insert-file-contents file) > + (when lines > + (let (beg end) > + (setq lines (split-string lines "-") > + beg (if (string= "" (car lines)) > + (point-min) > + (goto-char (point-min)) > + (forward-line (1- (string-to-number (car lines)))) > + (point)) > + end (if (string= "" (cadr lines)) > + (point-max) > + (goto-char (point-min)) > + (forward-line (1- (string-to-number (cadr lines)))) > + (point))) > + (narrow-to-region beg end))) > (when (or prefix prefix1) > (goto-char (point-min)) > (while (not (eobp)) > -- > 1.7.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] How do I include text between a range of line numbers with #INCLUDE 2011-01-08 19:28 ` Puneeth 2011-01-18 0:26 ` [Accepted] " Bastien Guerry @ 2011-01-18 0:48 ` Bastien 2011-01-18 3:24 ` Puneeth Chaganti 1 sibling, 1 reply; 8+ messages in thread From: Bastien @ 2011-01-18 0:48 UTC (permalink / raw) To: Puneeth; +Cc: Venkatesh Choppella, emacs-orgmode, Carsten Dominik Hi Puneeth, Puneeth <punchagan@gmail.com> writes: > Here is a patch with a ChangeLog entry and documentation for the > manual. I applied it -- thanks for it! I added minor modifications to the code and the documentation. You can check them from http://orgmode.org/w/org-mode.git > Please tell me if it looks OK. Also, I hope using > git-format-patch is the right way to send this page. If not, what is > the right way? It is *one* of the right way. For those patches -- as produced with git format-patch and attached to emails -- I should apply them directly, not using pw (my bad I used pw this time). Some people send patches using git send-mail: http://www.kernel.org/pub/software/scm/git/docs/git-send-email.html This way I can safely use pw: the commit summary will be the subject line, and the commit message will be the ChangeLog entry (that you had right btw.) Thanks for your contribution and your efforts! Best, -- Bastien ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] How do I include text between a range of line numbers with #INCLUDE 2011-01-18 0:48 ` [PATCH] " Bastien @ 2011-01-18 3:24 ` Puneeth Chaganti 0 siblings, 0 replies; 8+ messages in thread From: Puneeth Chaganti @ 2011-01-18 3:24 UTC (permalink / raw) To: Bastien; +Cc: emacs-orgmode Hi Bastien On Tue, Jan 18, 2011 at 6:18 AM, Bastien <bastien.guerry@wikimedia.fr> wrote: > Hi Puneeth, > > Puneeth <punchagan@gmail.com> writes: > >> Here is a patch with a ChangeLog entry and documentation for the >> manual. > > I applied it -- thanks for it! Great! Thanks! > > I added minor modifications to the code and the documentation. > You can check them from http://orgmode.org/w/org-mode.git I have seen them. Thanks for the clean up! :) >> Please tell me if it looks OK. Also, I hope using >> git-format-patch is the right way to send this page. If not, what is >> the right way? > > It is *one* of the right way. > > For those patches -- as produced with git format-patch and attached to > emails -- I should apply them directly, not using pw (my bad I used pw > this time). > > Some people send patches using git send-mail: > > http://www.kernel.org/pub/software/scm/git/docs/git-send-email.html > > This way I can safely use pw: the commit summary will be the subject > line, and the commit message will be the ChangeLog entry (that you had > right btw.) Ok. Will look into that. -- Puneeth ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-01-18 3:25 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-01-07 4:33 How do I include text between a range of line numbers with #INCLUDE Venkatesh Choppella 2011-01-07 7:59 ` [PATCH] " Puneeth 2011-01-07 14:32 ` Carsten Dominik 2011-01-08 18:05 ` Carsten Dominik 2011-01-08 19:28 ` Puneeth 2011-01-18 0:26 ` [Accepted] " Bastien Guerry 2011-01-18 0:48 ` [PATCH] " Bastien 2011-01-18 3:24 ` Puneeth Chaganti
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).