Re: [O] The Org Package

2014-04-12 Thread Grant Rettke
On Fri, Apr 11, 2014 at 9:32 PM, David Masterson wrote: > Do you see where I'm heading? Yes. As stated above, Worg has nice instructions. My experience has been that once you start using org you end up wanting different lots of different packages, and some that are very up to date. I ended up usi

[O] Spacing after sorting a heading

2014-04-12 Thread Kyle Meyer
Hi, I prefer to have a blank line before headings (and have set `org-blank-before-new-entry' for this effect), but I can't figure out how to preserve this spacing when sorting trees. , | * First heading | | ** | | btext | | ** | | atext | | * Second heading ` If "First heading"

Re: [O] Org-Agenda doesn't work

2014-04-12 Thread David Masterson
Nick Dokos writes: > David Masterson writes: > >> I got most of Org working again, but then the following error came up in >> org-agenda. I removed the ELC files to try to make the error more >> clear. Anyone know what the problem is? >> >> Debugger entered--Lisp error: (wrong-type-argument in

Re: [O] tiny patch for org-expiry

2014-04-12 Thread Bastien
Hi Alan, Alan Schmitt writes: > I'm trying to write some code to schedule reviews of projects, and I'm > basing it on org-expiry. I found a couple of tiny bugs with it, which > may be fixed with this patch. I Now Pronounce You Maintainer of Org Expiry :) Joke aside, I haven't touch the code si

Re: [O] The Org Package

2014-04-12 Thread John Hendy
On Fri, Apr 11, 2014 at 11:10 PM, David Masterson wrote: > John Hendy writes: > >> On Fri, Apr 11, 2014 at 9:32 PM, David Masterson wrote: > >>> I still need more understanding of the Emacs packaging system. >>> Something doesn't seem right and I'm sure I'm missing some key in >>> understanding ho

[O] org-table-copy-down incrementor

2014-04-12 Thread Stacey Marshall
Hi, I've been using org-mode for a little over a year, wish I had been using it for far longer. I am not a member of this list... I discovered it via , a link to the list there would be helpful. I discovered org-table-copy-down and its ability to incremen

Re: [O] [PATCH] ob-scheme.el: Fix scheme code blocks execution error in batch mode

2014-04-12 Thread Eric Schulte
KDr2 writes: > HI, Eric > > You are right, I remove the usage of advice now, and use the method you > (nearly) gave, only 1 little change: > I found the code: > > (defun t1 () (message "abc")) > ;;(symbol-function 't1) > > (let ((hold #'t1)) > (defun t1 () (message "def")) > (setq t1 hol

Re: [O] Patch for testing `org-open-at-point'

2014-04-12 Thread York Zhao
Hi Bastien, Sorry that I didn't know this was a known issue and I appreciate that you are willing to fix it. While I agree with Nicolas that it is more appropriate to keep org schedule line from being a headline property, I also think it is totally legitimate to have an org link as headline prope

Re: [O] Org-Agenda doesn't work

2014-04-12 Thread Nick Dokos
Nick Dokos writes: > David Masterson writes: > >> I got most of Org working again, but then the following error came up in >> org-agenda. I removed the ELC files to try to make the error more >> clear. Anyone know what the problem is? >> >> Debugger entered--Lisp error: (wrong-type-argument in

Re: [O] Org-Agenda doesn't work

2014-04-12 Thread Nick Dokos
David Masterson writes: > I got most of Org working again, but then the following error came up in > org-agenda. I removed the ELC files to try to make the error more > clear. Anyone know what the problem is? > > Debugger entered--Lisp error: (wrong-type-argument integer-or-marker-p nil) > pu

Re: [O] Bad footnotes when including org files

2014-04-12 Thread Nicolas Goaziou
Hello, Xavier Garrido writes: > Applied, tested and it works like a charm. I still have some issues > with a very big "book" I am writing but at least on the small example > I sent it solves the issues. I applied the patch to master. Regards, -- Nicolas Goaziou

[O] tiny patch for org-expiry

2014-04-12 Thread Alan Schmitt
Hello, I'm trying to write some code to schedule reviews of projects, and I'm basing it on org-expiry. I found a couple of tiny bugs with it, which may be fixed with this patch. Best, Alan >From f38fe30c5c6115d33755a1c9f052cb01d1434d79 Mon Sep 17 00:00:00 2001 From: Alan Schmitt Date: Sat, 12

Re: [O] [RFC] Properly handle keyword + COMMENT keyword

2014-04-12 Thread Nicolas Goaziou
Bastien writes: > I know, but the users should not have to guess this. > Maybe a note about the allowed structure here in the > manual would be useful. Done in e84c1d8442b857f9275e86bb34f12811f49fcdd6. Regards, -- Nicolas Goaziou

Re: [O] [PATCH] ob-scheme.el: Fix scheme code blocks execution error in batch mode

2014-04-12 Thread KDr2
HI, Eric You are right, I remove the usage of advice now, and use the method you (nearly) gave, only 1 little change: I found the code: (defun t1 () (message "abc")) ;;(symbol-function 't1) (let ((hold #'t1)) (defun t1 () (message "def")) (setq t1 hold)) ;;(symbol-function 't1) did