[O] [PATCH] Change: (org-agenda-get-progress) Set type text-property accordingly

2018-08-31 Thread Adam Porter
Previously, the "type" text-property was always set to "closed", even when an item was actually matched because of its "Clock" or "State" line. Now, the "type" text-property is set according to why the item was matched. Note: it's possible that some code might expect the value to be "closed" in a

[O] [PATCH] Fix: (org-agenda-get-progress) Logbook list bullets with 2+ spaces

2018-08-31 Thread Adam Porter
Previously, logbook list entries with more than one space between the bullet and the beginning of the entry would be ignored (i.e. if a bullet is defined in org-list-two-spaces-after-bullet-regexp, two spaces will be inserted after the bullet, and that prevents state-changed entries from appearing

[O] [PATCH] edit installation section

2018-08-31 Thread Will Pierce
* emphasize org's near-universal distribution * reformat vertical list * minor grammar fix Vertical list style here follows the Chicago Manual. (Similar formatting is used at line 8200 in the manual. I'd like to regularize this in the future.) 0001-edit-installation-section.patch Description: Bi

[O] org-attach-sync does not properly use ATTACH_DIR property

2018-08-31 Thread Willy Rempel
Hello all, First time posting, let me know what I'm doing wrong. Error: cd: No such directory found via CDPATH environment variable org-attach-sync calls org-attach-commit before evaluating attach-dir. org-attach-commit just uses the default '../data' in org-attach-directory. So if I attach a di

Re: [O] A strange problem with org-babel and SQLite

2018-08-31 Thread Robert Klein
Hi Cecil, On Fri, 31 Aug 2018 12:24:33 +0200 Cecil Westerhof wrote: > 2018-08-31 11:17 GMT+02:00 Robert Klein : > > > Hi Cecil, > > > > On Fri, 31 Aug 2018 10:47:50 +0200 > > Cecil Westerhof wrote: > > > > > I have a strange problem with org-babel and SQLite. > > > > > > I have a database t

Re: [O] A strange problem with org-babel and SQLite

2018-08-31 Thread Cecil Westerhof
2018-08-31 11:17 GMT+02:00 Robert Klein : > Hi Cecil, > > On Fri, 31 Aug 2018 10:47:50 +0200 > Cecil Westerhof wrote: > > > I have a strange problem with org-babel and SQLite. > > > > I have a database that is created with: > > CREATE TABLE "quotes" ( > > quoteID TEXT

Re: [O] A strange problem with org-babel and SQLite

2018-08-31 Thread Robert Klein
Hi Cecil, On Fri, 31 Aug 2018 10:47:50 +0200 Cecil Westerhof wrote: > I have a strange problem with org-babel and SQLite. > > I have a database that is created with: > CREATE TABLE "quotes" ( > quoteID TEXT PRIMARY KEY, > quote TEXT NOT NULL UNIQ

[O] A strange problem with org-babel and SQLite

2018-08-31 Thread Cecil Westerhof
I have a strange problem with org-babel and SQLite. I have a database that is created with: CREATE TABLE "quotes" ( quoteID TEXT PRIMARY KEY, quote TEXT NOT NULL UNIQUE, lastUsedTEXT, totalUsed INT DEFAULT 'unused'