Re: Bug: 28.0.50; `org-clocking-buffer` definition was removed, but it is still being referenced [9.4.3]

2021-03-10 Thread Eduardo Bellani
This was a wrong bug report, you can ignore. Looking at `list-load-path-shadows` and poking around my config indicated a mixed installation. Thanks Kyle! Kyle Meyer writes: > Eduardo Bellani writes: > >> Kyle Meyer writes: >> >>> In 16b5ee0ef, org-clocking-buffer

Re: Bug: 28.0.50; `org-clocking-buffer` definition was removed, but it is still being referenced [9.4.3]

2021-03-09 Thread Eduardo Bellani
Backtrace: Debugger entered--Lisp error: (void-function org-clocking-buffer) org-clocking-buffer() org-clocking-p() org-clock-in(nil) funcall-interactively(org-clock-in nil) call-interactively(org-clock-in nil nil) command-execute(org-clock-in) Kyle Meyer writes: > Eduardo Bell

Bug: 28.0.50; `org-clocking-buffer` definition was removed, but it is still being referenced [9.4.3]

2021-03-08 Thread Eduardo Bellani
, cairo version 1.16.0) of 2020-12-25 Package: Org mode version 9.4.3 -- Eduardo Bellani -- datarisk.io signature.asc Description: PGP signature

[O] [PATCH] lisp/ob-emacs-lisp.el: Remove unecessary printing in body expansion

2018-10-09 Thread Eduardo Bellani
TINYCHANGE --- lisp/ob-emacs-lisp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-emacs-lisp.el b/lisp/ob-emacs-lisp.el index 7446af252..322d2882b 100644 --- a/lisp/ob-emacs-lisp.el +++ b/lisp/ob-emacs-lisp.el @@ -54,7 +54,7 @@ their value. It is used as the optiona

Re: [O] How to change the export semantics of the property-drawer?

2017-09-15 Thread Eduardo Bellani
Sorry, I forgot about the subject tag. Eduardo Bellani writes: > Hello list. > > I am trying to export the property-drawer as a description list on an > html derived backend, but I'm afraid I got stuck after some effort in > it. > > Basically, I wanted

[O] How to change the export semantics of the property-drawer?

2017-09-15 Thread Eduardo Bellani
Hello list. I am trying to export the property-drawer as a description list on an html derived backend, but I'm afraid I got stuck after some effort in it. Basically, I wanted this: , | * Some | :PROPERTIES: | :CUSTOM_ID: 123 | :END: ` To be exported *as if* it was this , | *

Re: [O] Release 9.1

2017-09-07 Thread Eduardo Bellani
Yay Jonas Bernoulli writes: >> Org-mode 9.1 is out! > Congratulations! signature.asc Description: PGP signature

[O] [PATCH] Fix org-duration-to-minutes call on ox-taskjuggler

2017-09-05 Thread Eduardo Bellani
contrib/lisp/ox-taskjuggler.el (org-taskjuggler--build-task): Change call From the removed 'org-duration-minutes' function to 'org-duration-to-minutes'. TINYCHANGE --- contrib/lisp/ox-taskjuggler.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lisp/ox-taskjuggler.el

[O] [PATCH] Fix table variable with commas in ob-sqlite

2017-09-05 Thread Eduardo Bellani
/testing/lisp/test-ob-sqlite.el new file mode 100644 index 000..f732515 --- /dev/null +++ b/testing/lisp/test-ob-sqlite.el @@ -0,0 +1,45 @@ +;;; test-ob-sqlite.el --- tests for ob-sqlite.el + +;; Copyright (C) 2017 Eduardo Bellani + +;; Author: Eduardo Bellani +;; Keywords: lisp + +;; This program is

[O] [PATCH] Enable table with fields containing commas to be used as arguments to sqlite source blocks, fix ox-taskjuggler broken call.

2017-09-01 Thread Eduardo Bellani
rnal Happiness, and Finance | diff --git a/testing/lisp/test-ob-sqlite.el b/testing/lisp/test-ob-sqlite.el new file mode 100644 index 000..4970391 --- /dev/null +++ b/testing/lisp/test-ob-sqlite.el @@ -0,0 +1,34 @@ +;;; test-ob-sqlite.el --- tests for ob-sqlite.el + +;; Copyright (C) 2017 Eduard

Re: [O] ORG-NEWS

2017-03-16 Thread Eduardo Bellani
Are you running linum-mode? It is a source of slowness Colin Baxter writes: > At present, etc/ORG-NEWS is over 4000 lines long and "org-intensive". I > find navigating the file to be slow and cumbersome. I suggest it be slit > in two, or even in to org versions. What do others think?

[O] [PATCH] Add function evaluation parameter for the clocktable scope

2017-03-05 Thread Eduardo Bellani
org-clock.el: Add nullary function evaluation as a clocktable scope parameter * lisp/org-clock.el (org-dblock-write:clocktable): Funcall the scope argument if it is a function. * doc/org.texi: Document the feature of using a nullary function as the scope for the clocktable. * testing/lisp/t

Re: [O] [PATCH] Fix clocktable scope parameter

2017-03-04 Thread Eduardo Bellani
-file-name) (current-buffer) (block (plist-get params :block)) (ts (plist-get params :tstart)) -- TINYCHANGE Nicolas Goaziou writes: > Eduardo Bellani writes: > >> The only problem I see with this is that it will be backwards >> incompatible. >&g

Re: [O] [PATCH] Fix clocktable scope parameter

2016-12-16 Thread Eduardo Bellani
Hello Nicolas Goaziou writes: > can also be written, if really needed, > > :scope (lambda () (foo bar baz)) > > I'd favor clarity here and suggest to accept a function of no argument. The only problem I see with this is that it will be backwards incompatible. Any thoughts on that? signature

[O] [PATCH] Adds function form evaluation parameter for the clocktable scope

2016-12-16 Thread Eduardo Bellani
org-clock.el: Adds function form evaluation parameter for the clocktable scope * lisp/org-clock.el (org-dblock-write:clocktable): Make sure to evaluate the function form passed as the scope for the clocktable. * doc/org.texi: Document the feature of using a function form as the scope for the

Re: [O] [PATCH] Fix clocktable scope parameter

2016-12-15 Thread Eduardo Bellani
rguments to the function without using the full power of eval. What do you guys think? Nicolas Goaziou writes: > Hello, > > Eduardo Bellani writes: > >> org-clock.el: Fix clocktable scope parameter > > Thank you. However, this is not a "fix" per se. > >>

Re: [O] [PATCH] Fix clocktable scope parameter

2016-12-15 Thread Eduardo Bellani
s the one you should work on > for new documentation. > > All the best, > Tom > > Eduardo Bellani writes: > >> Hello everyone, >> >> One extra question, about documentation. >> >> The place for documenting this feature seems to be 'orgmanual

Re: [O] [PATCH] Fix clocktable scope parameter

2016-12-15 Thread Eduardo Bellani
ere a documentation about, well, adding documentation? Thanks. Nicolas Goaziou writes: > Hello, > > Eduardo Bellani writes: > >> org-clock.el: Fix clocktable scope parameter >> >> * lisp/org-clock.el (org-dblock-write:clocktable): Make sure to eval >> the s

Re: [O] [PATCH] Fix clocktable scope parameter

2016-12-15 Thread Eduardo Bellani
bout it through this SE post: http://emacs.stackexchange.com/a/7903 Anyway, I'll modify the patch and include documentation for this functionality. Nicolas Goaziou writes: > Hello, > > Eduardo Bellani writes: > >> org-clock.el: Fix clocktable scope parameter

[O] [PATCH] Fix clocktable scope parameter

2016-12-15 Thread Eduardo Bellani
org-clock.el: Fix clocktable scope parameter * lisp/org-clock.el (org-dblock-write:clocktable): Make sure to eval the scope if it is a lisp expression, or to return the scope if it is just a list. This adds back to the clocktable the capacity to have as scope both a list of file paths or a f

Re: [O] Unit test table

2016-02-13 Thread Eduardo Bellani
odify both 'org-table-get-stored-formulas' and 'org-table-fedit-finish' so they stop complaining about multiple declarations for a single column. Thanks On Sat, Feb 6, 2016 at 8:31 PM, Aaron Ecay wrote: > Hi Eduardo, > > 2016ko otsailak 4an, Eduardo Bellani-ek idatzi

[O] Unit test table

2016-02-04 Thread Eduardo Bellani
different versions of the same code, perhaps in different languages. This is a working model: https://gist.github.com/ebellani/7c70d16f06076e4fc375 as you can see, there's repetition and the TBLFM is huge. Anyone has an idea of a better way to achieve similar results? Thanks. -- Eduardo Bellani