Re: [O] Lisp error: wrong-number-of-arguments when publishing current project file

2014-09-11 Thread Sebastien Vauban
Hello Nick, Nick Dokos wrote: > Sebastien Vauban writes: >> When publishing a site project, or some file from it, I get the >> following error: >> >> Debugger entered--Lisp error: (wrong-number-of-arguments #[(&optional force) >> "\303 ^X\304\216 ?\205^K^@ >> ^Z\305\306 !+\207" [wconfig force org

Re: [O] Lisp error: wrong-number-of-arguments when publishing current project file

2014-09-11 Thread Achim Gratz
Nick Dokos writes: > First thing I would do is delete the org-publish.elc file and try with > uncompiled org-publish.el. That should at least give you a better > backtrace. You could just do C-u C-c C-x ! (reload Org uncompiled) and then get that backtrace. Regards, Achim. -- +<[Q+ Matrix-12 WA

Re: [O] Lisp error: wrong-number-of-arguments when publishing current project file

2014-09-11 Thread Sebastien Vauban
Achim Gratz wrote: > Nick Dokos writes: >> First thing I would do is delete the org-publish.elc file and try with >> uncompiled org-publish.el. That should at least give you a better >> backtrace. > > You could just do C-u C-c C-x ! (reload Org uncompiled) and then get > that backtrace. Didn't kno

[O] Unable to use org-sbe

2014-09-11 Thread Dror Atariah
I'm trying to use org-sbe but keep failing... I'm trying to use the example that can be found in the documentation of ob-table.el and the second column is filled with #ERROR. Here is the related output piped to *Messages*: Re-applying formulas to full table...(line 10) Re-applying formulas to 10

[O] Error with removing zero time clocks in capture.

2014-09-11 Thread Malcolm Purvis
With the current git version of org (release_8.3beta-323-gec8f24) I'm getting an error in the element cache when I try to capture a task because the clocked time for the captured task is 0. The following minimum configuration demonstrates the problem: --8<---cut here---sta

Re: [O] specifying the coding language resulting from a a :results code source block

2014-09-11 Thread Dror Atariah
Is there some change in the status of this issue? Can one now specify the language of the result? Cheers, Dror -- Mahalo Tom, It looks like that's what I'll be doing for the ruby block. That said, it would be great if the :results code argument would allow a language specification. Gre

[O] Syntaxhighlighing in headers

2014-09-11 Thread Manfred Lotz
Hi there, If have something like this * Information (Local) because of the parenthesis the line will not be highlighted. Is there a customization knob to get ( and ) added to the list of valid characters? -- Thanks, Manfred

[O] bug#18401: 24.4.50; emerge-files fails for org files

2014-09-11 Thread Detlev Zundel
Hi Glenn, > Detlev Zundel wrote: > >> org-overview: `recenter'ing a window that does not display current-buffer. > > This was apparently fixed in the Org repository months ago, > but still not in the Emacs one. Ref: > > http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17724#26 > > (We now have 4 separ

Re: [O] Syntaxhighlighing in headers

2014-09-11 Thread Thorsten Jolitz
Manfred Lotz writes: > Hi there, > If have something like this > > * Information (Local) > > because of the parenthesis the line will not be highlighted. I see the same issue for quite some time now. > Is there a customization knob to get ( and ) added to the list of valid > characters? I don'

[O] Table Formula: Update column, then update value

2014-09-11 Thread Tory S. Anderson
I have a table that calculates daily cost and then sums the hours and the weekly cost. But I can't seem to get a formula that will do the former. | Date | Hours | Rate | Cost | |--+---+--+--| | September 8 | 0.50 |1 | 1. | | September 9 | 2.00 |

[O] Improved way to include some headlines from an external org file

2014-09-11 Thread Xavier Garrido
Dear Orgers, By following discussions on this list, I think I have understood that the inclusion mechanism through =#+INCLUDE= directive is a bit rough and only allows a limited range of use. I know how to include only lines using =:lines= parameter but what I would like to achieve is to only

Re: [O] Table Formula: Update column, then update value

2014-09-11 Thread Eric S Fraga
On Thursday, 11 Sep 2014 at 10:00, Tory S. Anderson wrote: > I have a table that calculates daily cost and then sums the hours and > the weekly cost. But I can't seem to get a formula that will do the > former. > > | Date | Hours | Rate | Cost | > |--+---+--+--|

Re: [O] Table Formula: Update column, then update value

2014-09-11 Thread Tory S. Anderson
When I apply the formula #+TBLFM: $4=$3*$2::$hrs=vsum(@I..II)::$ttl=vsum(@I..II) It doesn't give me any errors, but it also doesn't do anything to $4. So if I change one of my hour amounts, the "hrs" field will update appropriately, but not the "cost" field, which remains unchanged. It appears

[O] [BUG] BBDB anniversary links don't open in agenda

2014-09-11 Thread Matt Lundin
BBDB anniversary links don't open in the agenda. At the moment, the function org-agenda-open-link seems to be set up only to open links if they are actually in the original buffer. But bbdb anniversary links are generated from the following sexp: %%(org-bbdb-anniversaries) When org-agenda-open-l

[O] How can I add a note to a TODO state change sometimes but not always?

2014-09-11 Thread William Denton
I have this in a projects file: #+TODO: TODO(t!) WAITING(w!) DONE(d!) CANCELED(c@) When I move something from TODO to WAITING, it adds a timestamp without asking for a note. That's fine 8 or 9 times out of 10 ... but sometimes I want to add a note too. If I use the @ it will always ask me f

[O] autosave in org-src buffer only works ones

2014-09-11 Thread Adriaan Sticker
Hi all I've the following in my init.el (setq org-edit-src-auto-save-idle-delay 5) If I open in my org file a R code block with C-c ', edit into the opened org-src buffer with the ESS major mode activated and wait for 5s, I can see autosave kicking in and my org buffer gets updated with my n

Re: [O] Lisp error: wrong-number-of-arguments when publishing current project file

2014-09-11 Thread Nicolas Goaziou
Hello, Sebastien Vauban writes: > When publishing a site project, or some file from it, I get the > following error: [...] > ("c:/Program Files (x86)/emacs-24.3/lisp/org/org-publish.elc" . 30759) "P"] 2) You seem to be using a "org-publish.el" library that doesn't match the Org version you'

Re: [O] autosave in org-src buffer only works ones

2014-09-11 Thread Nicolas Goaziou
Hello, Adriaan Sticker writes: > I've the following in my init.el > > (setq org-edit-src-auto-save-idle-delay 5) > > If I open in my org file a R code block with C-c ', edit into the opened > org-src buffer with the ESS major mode activated and wait for 5s, I can see > autosave kicking in an

[O] bug#18401: 24.4.50; emerge-files fails for org files

2014-09-11 Thread Glenn Morris
Detlev Zundel wrote: > problem and lingers for a while now. Who can merge the org repository? > Is there something that an outsider like me can do to help? Thanks for asking! :) Anyone with a copy of the Org repo and the Emacs repo can generate the diff that needs to be applied from the former

Re: [O] specifying the coding language resulting from a a :results code source block

2014-09-11 Thread Ista Zahn
Can't you just do #+begin_src foo :wrap src bar hello world #+end_src ? Best, Ista On Thu, Sep 11, 2014 at 5:11 AM, Dror Atariah wrote: > Is there some change in the status of this issue? Can one now specify the > language of the result? > > Cheers, > Dror > > -- > Mahalo Tom, > >

Re: [O] Table Formula: Update column, then update value

2014-09-11 Thread Eric S Fraga
On Thursday, 11 Sep 2014 at 10:50, Tory S. Anderson wrote: > When I apply the formula > > #+TBLFM: $4=$3*$2::$hrs=vsum(@I..II)::$ttl=vsum(@I..II) > It doesn't give me any errors, but it also doesn't do anything to > $4. So if I change one of my hour amounts, the "hrs" field will update > appropr

[O] org-crypt doesn't automatically encrypt on save

2014-09-11 Thread RĂ©mi Letot
Hello org-mode World, is anyone successfully using org-crypt with org-crypt-use-before-save-magic ? I set it up as per the docs, but apparently the org-mode before-save-hook is not populated with org-encrypt-entries as it should when I open an org buffer, meaning that crypt tagged headlines are n

Re: [O] Error with removing zero time clocks in capture.

2014-09-11 Thread Nicolas Goaziou
Hello, Malcolm Purvis writes: > With the current git version of org (release_8.3beta-323-gec8f24) I'm > getting an error in the element cache when I try to capture a task > because the clocked time for the captured task is 0. This should be fixed. Thank you for reporting it. Regards, -- Nic

Re: [O] autosave in org-src buffer only works ones

2014-09-11 Thread Adriaan Sticker
Cool, thanks! 2014-09-11 18:28 GMT+02:00 Nicolas Goaziou : > Hello, > > Adriaan Sticker writes: > > > I've the following in my init.el > > > > (setq org-edit-src-auto-save-idle-delay 5) > > > > If I open in my org file a R code block with C-c ', edit into the opened > > org-src buffer with t

[O] meaningfull names for org-src buffers

2014-09-11 Thread Adriaan Sticker
Hi all I was wondering if it's somehow possible to give named org src buffer the name they were give in their #+NAME tag? Now there are just called something like: *Org Src test.org[ R ]* But if you have multiple org-src buffers opened at the same time, its hard to find the correct one back. Gre

Re: [O] Error with removing zero time clocks in capture.

2014-09-11 Thread Malcolm Purvis
> "Nicolas" == Nicolas Goaziou writes: Nicolas> This should be fixed. Thank you for reporting it. I can confirm that the error has gone. Thanks, Malcolm -- Malcolm Purvis

Re: [O] org-crypt doesn't automatically encrypt on save

2014-09-11 Thread Darlan Cavalcante Moreira
You need to load org-crypt and call org-crypt-use-before-save-magic before you open the org file. For instance, my configuration for org-crypt is --8<---cut here---start->8--- (autoload 'org-decrypt-entry "org-crypt.el" "Decrypt the content of the current head

Re: [O] Improved way to include some headlines from an external org file

2014-09-11 Thread Andrea Rossetti
Xavier Garrido writes: > Of course, I can achieve that by using =:lines= and calculating how many > lines embeds the given headline. Hi Xavier, another possible approach (maybe less handy, but in some cases it might fit): the user could keep one .org file per headline, and #+INCLUDE one headl

[O] Problem with org-indent-block

2014-09-11 Thread Fabrice Popineau
Hi, Recently, I started to get problems with org-indent-block returning errors "Not at a block". Unfortunately, this is happening while restarting emacs, and I have no idea about how to debug it. It would be nice if somehow this function could give the file and the point in the file where the erro