Re: [O] org-mode + icicles, avoid key binding redefinitions?

2014-01-22 Thread Bastien
Drew Adams writes: > * Sequences consisting of `C-c' followed by any other punctuation >character are allocated for minor modes. Using them in a major >mode is not absolutely prohibited, but if you do that, the major >mode binding may be shadowed from time to time by minor modes. >

Re: [O] using lightbox plugins in HTML export

2014-01-22 Thread Bastien
Hi Peter, Peter Salazar writes: > Thanks for the response. That ATTR_HTML comes in very handy. I made > one adjustment to your code, and it totally worked! Amazing! > > Here it is in full: > > #+ATTR_LaTeX: :width 300px > #+ATTR_HTML: :rel lightbox :href image.png > [[file:image.png]] Glad it w

Re: [O] ox-md conforming pandoc-markdown

2014-01-22 Thread Michel Kuhlmann
> > - customisable meta-data export (currently nothing exported) of, say, > > > > […] > > * pandoc header > > > > % myTitle > > % meMyself > > % 2014-01-21 > > Basic support for this is in the org-pandoc project, which bases its > export on ox-md but ad

Re: [O] ox-md conforming pandoc-markdown

2014-01-22 Thread Erik Hetzner
Hi Michel, At Tue, 21 Jan 2014 12:00:01 +0100, Michel Kuhlmann wrote: > > Hi, > I often convert files with `pandoc`. Currently there is no > pandoc-org-mode-reader, so I'm using markdown as an intermediate step. > > I'm aware of ; this > also uses

Re: [O] odt exporter on mixed org setup

2014-01-22 Thread Jambunathan K
Achim Gratz writes: > Bzzt. Wrong. I have my reservations. With stock Emacs Snapshot (i.e., without any separate Org installation - git or elpa) at Bzr version 116124, at line 16, I am seeing ;;;###autoload (defvar org-odt-data-dir "/usr/share/emacs/etc/org" "The location of ODT

[O] in LaTeX, how to start page numbering after TOC?

2014-01-22 Thread Peter Salazar
In export to LaTeX/PDF, has anyone had success in suppressing page numbering on the cover page and the Table of Contents, such that the first text section appears as Page 1? I tried adding this at the beginning of my document, but it had no effect: #+LATEX_CMD: \cleardoublepage #+LATEX_CMD: \page

Re: [O] org-mode + icicles, avoid key binding redefinitions?

2014-01-22 Thread Drew Adams
Someone pointed me to this thread. I am not subscribed to this list, so cc me if you want me to see a reply you write. Wrt some of what I read in the thread: 1. It is not true, (or else it is meaningless, depending on what you mean by that phrase) that "C-c ' is officially an Emacs keybinding".

Re: [O] using lightbox plugins in HTML export

2014-01-22 Thread Peter Salazar
Hey Bastien, Thanks for the response. That ATTR_HTML comes in very handy. I made one adjustment to your code, and it totally worked! Amazing! Here it is in full: #+ATTR_LaTeX: :width 300px #+ATTR_HTML: :rel lightbox :href image.png [[file:image.png]] Thanks! On Mon, Jan 20, 2014 at 6:19 AM,

Re: [O] Check checkbox and move to end of list

2014-01-22 Thread Cecil Westerhof
2014/1/23 Cecil Westerhof > (defun dcbl-move-item-to-begin-of-list (&optional item) > (interactive) > (save-excursion > (when item > (goto-char item)) > (org-list-send-item (line-beginning-position) 'begin > (org-list-struct))) > (previous-line)) > > (defun dcbl-move-item-to-e

[O] Search for defined property

2014-01-22 Thread Pete Ley
I have trees in several agenda files with Effort properties and I'm trying to make an agenda view that shows all trees with this property defined. I know I can do 'M-x org-agenda m' to do a property search but this only seems to work searching for properties with a specific value. I'd like to see

Re: [O] Check checkbox and move to end of list

2014-01-22 Thread Cecil Westerhof
2014/1/23 Cecil Westerhof > I also think it would be a good idea to change > (org-list-send-item item 'end struct) > to a call to a function. I think it would be useful to have a function to > send a item to the end (or begin) of a list. > I know have the following: (defun dcbl-check-checkbo

Re: [O] API problem

2014-01-22 Thread Cecil Westerhof
2014/1/22 Nicolas Goaziou > See `org-list-write-struct' docstring. Basically, STRUCT doesn't match > real structure anymore since step C. You need to provide the original > structure as a third argument so `org-list-write-struct' can modify > buffer by set difference. > > (let* ((struct (org-li

[O] Check checkbox and move to end of list

2014-01-22 Thread Cecil Westerhof
The following function does (mostly) what I want: (defun dcbl-check-checkbox-and-move-to-end () (interactive) (save-excursion (let* ((struct (org-list-struct)) (struct-old (copy-tree struct)) (item (line-beginning-position))

Re: [O] Using Org-mode for mass-scheduling appointments

2014-01-22 Thread John Kitchin
Do you mean besides making your table in org-mode and exporting it to an html file? you can update the org-file and reexport it whenever you get an email from a student. what else did you want to happen? John --- John Kitchin Associate Professor Doherty Hall A207F

Re: [O] API problem

2014-01-22 Thread Nicolas Goaziou
Hello, Cecil Westerhof writes: > But one thing I do not understand. When you do an org-list-write-struct, > you want to change the structure. So why is old-struct optional? Good question. IIRC, it's just syntactic sugar since `org-list-write-struct' will do the `copy-tree' for you in most situ

Re: [O] How to signal end of a section or subsection

2014-01-22 Thread Nicolas Goaziou
Hello, "Sebastien Vauban" writes: > I thought that the standard way was the following: > > *** > :B_theorem: > :PROPERTIES: > :BEAMER_env: theorem > :END: > > There is no largest prime number. > > *** End of theorem

[O] Fwd: org-cycle goes wrong when cursor at the end of the line

2014-01-22 Thread Cecil Westerhof
Went wrong agan. :'( I should repair Gnus. -- Forwarded message -- From: Cecil Westerhof Date: 2014/1/22 Subject: Re: org-cycle goes wrong when cursor at the end of the line To: Bastien 2014/1/22 Bastien > > I have: > > * Testing > > *** Line one > > *** Line two > > *** Line

Re: [O] API problem

2014-01-22 Thread Cecil Westerhof
2014/1/22 Nicolas Goaziou > Cecil Westerhof writes: > > > I have an org-file wth the folowing: > > - [ ] A (setq struct (org-list-struct)) > > - [-] B (org-list-get-checkbox 41 struct) > > - [ ] C (org-list-set-checkbox 41 struct "[X]") > > - [ ] D (org-list-get-checkbox 41 struct) > > - [ ] E (

Re: [O] How to signal end of a section or subsection

2014-01-22 Thread Alan Schmitt
Nicolas Goaziou writes: > Hello, > > Alan Schmitt writes: > >> I have a use case for beamer export, where I have had to use latex >> blocks to solve it. If I want: >> >> , >> | blah blah >> | >> | \begin{block}{Theorem} >> | foo bar >> | \end{block} >> | >> | more blah blah >> ` >> >>

Re: [O] How to signal end of a section or subsection

2014-01-22 Thread Sebastien Vauban
Nicolas Goaziou wrote: > Alan Schmitt writes: > >> I have a use case for beamer export, where I have had to use latex >> blocks to solve it. If I want: >> >> , >> | blah blah >> | >> | \begin{block}{Theorem} >> | foo bar >> | \end{block} >> | >> | more blah blah >> ` >> >> I don't know h

Re: [O] best way of customizing generated css to match bootstrap css

2014-01-22 Thread Mehul Sanghvi
Peter, Do you have an example of an org file in which you use it ? cheers, mehul On Wed, Jan 22, 2014 at 3:41 PM, Peter Salazar wrote: > I've had success exporting org to HTML and using it with > http://gregfranko.com/jquery.tocify.js/ - which automatically generates a > dynamic

[O] Passing tables as org variables to R - suggestion

2014-01-22 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi This is following my earlier mail, where I was wondering that tables are passed from org to R via temporary files. The more I think about it, the more it makes sense to me, as tables can sometimes be quite long. But there is still te problem of i

Re: [O] best way of customizing generated css to match bootstrap css

2014-01-22 Thread Peter Salazar
I've had success exporting org to HTML and using it with http://gregfranko.com/jquery.tocify.js/ - which automatically generates a dynamically updating table of contents based on HTML headings and uses a Bootstrap theme and Bootstrap CSS. On Wed, Jan 22, 2014 at 3:35 PM, Mehul Sanghvi wrote: >

Re: [O] API problem

2014-01-22 Thread Nicolas Goaziou
Cecil Westerhof writes: > I have an org-file wth the folowing: > - [ ] A (setq struct (org-list-struct)) > - [-] B (org-list-get-checkbox 41 struct) > - [ ] C (org-list-set-checkbox 41 struct "[X]") > - [ ] D (org-list-get-checkbox 41 struct) > - [ ] E (org-list-write-struct struct (org-list-pare

Re: [O] best way of customizing generated css to match bootstrap css

2014-01-22 Thread Mehul Sanghvi
On Sat, Apr 6, 2013 at 5:37 AM, Marc Seibert wrote: > Hi, > > After using jekyll and o-blog a while I just fiddled around more in depth > with org-publishing. > I must say it is starting to convince me to stop using to wrapp my org > generated html files with a wrapper like jekyll etc. > Org-publ

Re: [O] API problem

2014-01-22 Thread Cecil Westerhof
2014/1/22 Cecil Westerhof > 2014/1/22 Nicolas Goaziou > >> > To solve a problem I have the following line in an org file: >> > - [ ] B (org-list-set-checkbox (line-beginning-position) >> > (org-list-struct) "[X]") ITEM STRUCT CHECKBOX (org-list-send-item >> > (line-beginning-position) 'e

[O] Fwd: API problem

2014-01-22 Thread Cecil Westerhof
Did not go to the list. :'( -- Forwarded message -- From: Cecil Westerhof Date: 2014/1/22 Subject: Re: API problem To: Nicolas Goaziou 2014/1/22 Nicolas Goaziou > > To solve a problem I have the following line in an org file: > > - [ ] B (org-list-set-checkbox (line-b

Re: [O] How to signal end of a section or subsection

2014-01-22 Thread Nicolas Goaziou
Hello, Alan Schmitt writes: > I have a use case for beamer export, where I have had to use latex > blocks to solve it. If I want: > > , > | blah blah > | > | \begin{block}{Theorem} > | foo bar > | \end{block} > | > | more blah blah > ` > > I don't know how to do it using the org machin

Re: [O] How to signal end of a section or subsection

2014-01-22 Thread Alan Schmitt
Eric S Fraga writes: > I guess you can find plenty of discussions on this list on this topic so > I won't rehash. Just to say that there has never been a convincing use > case that is not easily addressed with description lists and inline > tasks. The former can be made to look like encapsulate

Re: [O] org-cycle goes wrong when cursor at the end of the line

2014-01-22 Thread Bastien
Hi Cecil, Cecil Westerhof writes: > I have: > * Testing > *** Line one > *** Line two > *** Line tree > > When in overview mode and with the cursor at the end of the line > (after ...), does not work properly. In this case I just got: > * Testing... > *** Line tree I can reproduce this, but ha

Re: [O] Bug: [babel] Order of definition of :var makes or breaks the results [8.2.5f (release_8.2.5f-545-g630096 @ /Users/rainerkrug/.emacs.d/org-mode/lisp/)]

2014-01-22 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Any confirmation of this bug? Rainer On 01/21/14, 15:17 , Rainer M Krug wrote: > Depending on the order in which variables are declared, the > definitions are correct or wrong. > > In the example below, if DUMMY is declared first and SPECIES and >

[O] Possible Bug Report: org-agenda-show-inherited-tags

2014-01-22 Thread Subhan Tindall
This may simply be a functionality issue, but either way I'm looking for a workaround. With org-agenda-show-inherited-tags set to 'always, headlines with an inherited tag will match a tag search for agendas such as 'm' However, the inherited tags themselves remain invisible in many agendas (see b

Re: [O] \200\231 showing in org-mode post

2014-01-22 Thread Sharon Kimble
On Wed, 22 Jan 2014 13:12:21 -0500 Nick Dokos wrote: > Sharon Kimble writes: > > > On Wed, 22 Jan 2014 08:28:46 -0500 > > Nick Dokos wrote: > > > >> Sharon Kimble writes: > >> > >> > When pasting from an article on the web into an org-mode buffer, > >> > I start with - > >> > "In today’s di

Re: [O] Aligned glosses in orgmode (for export to odt/doc)

2014-01-22 Thread Jambunathan K
Benjamin Slade writes: > One potential solution would be an orgmode setup which produces > borderless tables with an "optimal width" column setting. I don't know > how to do this in orgmode though (or if it can be done currently). This feature is available only in my private repo. --

Re: [O] \200\231 showing in org-mode post

2014-01-22 Thread Nick Dokos
Sharon Kimble writes: > On Wed, 22 Jan 2014 08:28:46 -0500 > Nick Dokos wrote: > >> Sharon Kimble writes: >> >> > When pasting from an article on the web into an org-mode buffer, I >> > start with - >> > "In today’s digital age, we are needing more and more passwords to >> > secure our data a

Re: [O] bug in 8.2.5f for using tables as data in python?

2014-01-22 Thread Bastien
Miguel Ruiz writes: > But I understand that Daniel Gerber's proposal is (note the last > line): Got it now. Fixed, thanks! -- Bastien

Re: [O] \200\231 showing in org-mode post

2014-01-22 Thread Nick Dokos
Sharon Kimble writes: > On Wed, 22 Jan 2014 08:28:46 -0500 > Nick Dokos wrote: > >> ... >> If you just open the file in UTF-8, does the ugliness go away? >> > I don't know how to do that, sorry. > C-x RET c utf-8 RET C-x C-f foo.txt RET Nick

[O] Aligned glosses in orgmode (for export to odt/doc)

2014-01-22 Thread Benjamin Slade
I'm contemplating writing a linguistics article in orgmode because I know I will need to provide a doc(x) file (normally I would otherwise use LaTeX). One of things I will need to be able to is produce numbered examples with aligned interlinear glosses (like these: http://www.eva.mpg.de/lingua/res

Re: [O] API problem

2014-01-22 Thread Nicolas Goaziou
Hello, Cecil Westerhof writes: > To solve a problem I have the following line in an org file: > - [ ] B (org-list-set-checkbox (line-beginning-position) > (org-list-struct) "[X]") ITEM STRUCT CHECKBOX (org-list-send-item > (line-beginning-position) 'end (org-list-struct)) ITEM DEST STRUC

[O] API problem

2014-01-22 Thread Cecil Westerhof
To solve a problem I have the following line in an org file: - [ ] B (org-list-set-checkbox (line-beginning-position) (org-list-struct) "[X]") ITEM STRUCT CHECKBOX (org-list-send-item (line-beginning-position) 'end (org-list-struct)) ITEM DEST STRUCT Executing the org-list-send-item brings

Re: [O] bug in 8.2.5f for using tables as data in python?

2014-01-22 Thread John Kitchin
Confirmed. I just pulled the latest repository and it is fixed! Hooray, now to finish exporting the manuscript I am trying to resubmit! John --- John Kitchin Associate Professor Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsb

[O] org-cycle goes wrong when cursor at the end of the line

2014-01-22 Thread Cecil Westerhof
I have: * Testing *** Line one *** Line two *** Line tree When in overview mode and with the cursor at the end of the line (after ...), does not work properly. In this case I just got: * Testing... *** Line tree By the way all asterisks are shown, where only the last one should be displayed. In

Re: [O] \200\231 showing in org-mode post

2014-01-22 Thread Sharon Kimble
On Wed, 22 Jan 2014 08:28:46 -0500 Nick Dokos wrote: > Sharon Kimble writes: > > > When pasting from an article on the web into an org-mode buffer, I > > start with - > > "In today’s digital age, we are needing more and more passwords to > > secure our data and our identity." > > and its displ

Re: [O] bug in 8.2.5f for using tables as data in python?

2014-01-22 Thread Miguel Ruiz
Sorry, Bastien At this moment, in ob-python.el you can see: (defun org-babel-python-var-to-python (var) "Convert an elisp value to a python variable. Convert an elisp value, VAR, into a string of python source code specifying a variable of the same value." (if (listp var) (concat "[" (mapconca

Re: [O] Moving checkbox item to end of list when checked

2014-01-22 Thread Thorsten Jolitz
Nicolas Goaziou writes: Hello, > Thorsten Jolitz writes: > >> Your function could be implemented along the line of: >> >> 1. put an 'after' advice on `org-toggle-checkbox' > > See also `org-checkbox-statistics-hook' > >> Its easy to get 'struct at point' with >> >> #+begin_src emacs-lisp >> (de

Re: [O] How to customize option templates?

2014-01-22 Thread Nicolas Goaziou
> OTOH, hard-coding the order of options doesn't work so well for > back-ends, so the template could, at a bare minimum, follow the order > specified in `org-export-define-backend'. I'll look into it. Done in master. I also reordered keywords in back-ends.

Re: [O] [BUG] org-timestamp-change does not respect argument 'n' for minutes

2014-01-22 Thread Bastien
Thorsten Jolitz writes: > ,- > | M-: (org-timestamp-up 3) > `- The "3" here means 3 minutes, not "3 steps up", so the rounding happens after minutes have been added. > should change minutes > > - up 3 units when valus is (1 1) > - up 15 units wh

Re: [O] Moving checkbox item to end of list when checked

2014-01-22 Thread Nicolas Goaziou
Hello, Thorsten Jolitz writes: > Your function could be implemented along the line of: > > 1. put an 'after' advice on `org-toggle-checkbox' See also `org-checkbox-statistics-hook' > Its easy to get 'struct at point' with > > #+begin_src emacs-lisp > (defun org-list-struct () > "Return struc

Re: [O] \200\231 showing in org-mode post

2014-01-22 Thread Nick Dokos
Sharon Kimble writes: > When pasting from an article on the web into an org-mode buffer, I > start with - > "In today’s digital age, we are needing more and more passwords to > secure our data and our identity." > and its displayed in the buffer as - > "In todayâ\200\231s digital age, we are nee

Re: [O] Moving checkbox item to end of list when checked

2014-01-22 Thread Thorsten Jolitz
Cecil Westerhof writes: > I have the folowing: > * Actions - [X] A - [ ] B - [ ] C > > When on A I give ‘C-c C-c’ I get: > * Actions >   - [X] A >   - [ ] B >   - [ ] C > > but I would like to get: > * Actions >   - [ ] B >   - [ ] C >   - [X] A > > Is this possible? > If not I could write an

Re: [O] [BUG] org-timestamp-change does not respect argument 'n' for minutes

2014-01-22 Thread Thorsten Jolitz
Bastien writes: > Hi Thorsten, > > Thorsten Jolitz writes: > >> 2. M-: (org-timestamp-up 3) >> >> results in: >> >> ,-- >> | ** Cafe <2014-01-23 Do 19:35> >> `-- >> >> 3. cross-check that the other units work by repeating 1 and 2 with >>

Re: [O] Moving checkbox item to end of list when checked

2014-01-22 Thread Cecil Westerhof
2014/1/22 Cecil Westerhof > >> but I would like to get: > >> >> * Actions >> >> - [ ] B >> >> - [ ] C >> >> - [X] A >> >> >> >> Is this possible? >> > >> > `C-c ^ x' to sort the list by checkbox status. >> > >> > But this is an additional step after ticking the checkbox. >> > >> >> If not I

[O] Using Org-mode for mass-scheduling appointments

2014-01-22 Thread Marcin Borkowski
Hi list, I have the following problem: I want to schedule quite a few short (10 minutes, say) appointments with my students ("mass" is probably an exaggeration, but there are going to be around 50 of them). I'll have several time slots, and I want the students to reserve one for each of them. I'

Re: [O] bug in 8.2.5f for using tables as data in python?

2014-01-22 Thread Bastien
Hi Miguel, Miguel Ruiz writes: > Could it be a poorly rewritten patch? Original Daniel Gerber's > proposal works for me. Can you tell what's wrong in the current version of ob-python.el from git repo? Otherwise I'm not sure to understand. Thanks, -- Bastien

Re: [O] [BUG] org-timestamp-change does not respect argument 'n' for minutes

2014-01-22 Thread Bastien
Hi Thorsten, Thorsten Jolitz writes: > 2. M-: (org-timestamp-up 3) > > results in: > > ,-- > | ** Cafe <2014-01-23 Do 19:35> > `-- > > 3. cross-check that the other units work by repeating 1 and 2 with >point on hour, month etc. Yes, b

Re: [O] bug in 8.2.5f for using tables as data in python?

2014-01-22 Thread Miguel Ruiz
Could it be a poorly rewritten patch? Original Daniel Gerber's proposal works for me. diff --git a/lisp/ob-python.el b/lisp/ob-python.el index 1457682..523fd70 100644 (file) --- a/lisp/ob-python.el +++ b/lisp/ob-python.el @@ -137,7 +137,7 @@ specifying a variable of the same value."     or

Re: [O] Moving checkbox item to end of list when checked

2014-01-22 Thread Cecil Westerhof
2014/1/22 Nicolas Goaziou > >> but I would like to get: > >> * Actions > >> - [ ] B > >> - [ ] C > >> - [X] A > >> > >> Is this possible? > > > > `C-c ^ x' to sort the list by checkbox status. > > > > But this is an additional step after ticking the checkbox. > > > >> If not I could write a

Re: [O] Moving checkbox item to end of list when checked

2014-01-22 Thread Nicolas Goaziou
Hello, Bastien writes: > Cecil Westerhof writes: > >> but I would like to get: >> * Actions >>   - [ ] B >>   - [ ] C >>   - [X] A >> >> Is this possible? > > `C-c ^ x' to sort the list by checkbox status. > > But this is an additional step after ticking the checkbox. > >> If not I could write

Re: [O] Moving checkbox item to end of list when checked

2014-01-22 Thread Bastien
Hi Cecil, Cecil Westerhof writes: > but I would like to get: > * Actions >   - [ ] B >   - [ ] C >   - [X] A > > Is this possible? `C-c ^ x' to sort the list by checkbox status. But this is an additional step after ticking the checkbox. > If not I could write an alias for it I think. Is there

Re: [O] (i/a)spell in org-mode - ignore links?

2014-01-22 Thread Nicolas Goaziou
Hello, John Kitchin writes: > hmm.. that is not my experience. > > In org 8.2.5f This is a stable release. The feature only exists in development branch (aka master). Regards, -- Nicolas Goaziou

Re: [O] [BUG] org-timestamp-change does not respect argument 'n' for minutes

2014-01-22 Thread Thorsten Jolitz
Bastien writes: Hi Bastien, > Thorsten Jolitz writes: > >> Bug or feature? >> >> Why is there this special handling of minutes? Evaluating >> >> ,- >> | (org-timestamp-up 3) >> `- >> >> with point on year, month, day, hour works as expected (3 units up),

[O] Moving checkbox item to end of list when checked

2014-01-22 Thread Cecil Westerhof
I have the folowing: * Actions - [ ] A - [ ] B - [ ] C When on A I give ‘C-c C-c’ I get: * Actions - [X] A - [ ] B - [ ] C but I would like to get: * Actions - [ ] B - [ ] C - [X] A Is this possible? If not I could write an alias for it I think. Is there a command for going to

[O] \200\231 showing in org-mode post

2014-01-22 Thread Sharon Kimble
When pasting from an article on the web into an org-mode buffer, I start with - "In today’s digital age, we are needing more and more passwords to secure our data and our identity." and its displayed in the buffer as - "In todayâ\200\231s digital age, we are needing more and more passwords to secu

Re: [O] How to customize option templates?

2014-01-22 Thread Rasmus
Hi Frederik, Frederik writes: > I just looked at `org-export-define-derived-backend' and saw all the > org-koma-letter-* options -- this will ease most of the pain ;-) Some people, notably Viktor and Alan, rely on LCO files for such things. You can place LCO files somewhere in the texlive/mikt

Re: [O] orgstruct-mode taking over C-c C-f

2014-01-22 Thread Bastien
Hi Eric, Eric Abrahamsen writes: > I'm not sure how this is supposed to work, so I'm not quite sure what > the proper solution is... This should now be fixed, please test and report any problem. Thanks, -- Bastien

Re: [O] [BUG] org-timestamp-change does not respect argument 'n' for minutes

2014-01-22 Thread Bastien
Hi Thorsten, Thorsten Jolitz writes: > Bug or feature? > > Why is there this special handling of minutes? Evaluating > > ,- > | (org-timestamp-up 3) > `- > > with point on year, month, day, hour works as expected (3 units up), but > not with point on minut

[O] [BUG] org-timestamp-change does not respect argument 'n' for minutes

2014-01-22 Thread Thorsten Jolitz
Bug or feature? Why is there this special handling of minutes? Evaluating ,- | (org-timestamp-up 3) `- with point on year, month, day, hour works as expected (3 units up), but not with point on minute. There it's always a 1 unit change due to this code sn

Re: [O] bug#16440: 24.3.50; Some colors of the theme aren't respected in latest Emacs

2014-01-22 Thread Sebastien Vauban
Hello, > See http://screencast.com/t/kvuLrvtVZ2l6 for a comparison of how the > faces were displayed in older Emacs and in the current one. Giving more "data points" on this with a MINIMAL Emacs configuration (proving, if needs be, that it isn't due to something misconfigured in my long configura

Re: [O] Debugger entered--Lisp error: (wrong-type-argument stringp nil)

2014-01-22 Thread Sebastien Vauban
Hi Bastien, > "Sebastien Vauban" writes: >> Since a couple of days, I have the following trouble when capturing in >> one (or more?) files. >> >> I've not yet understood the problem. Anybody having tips? > > Can you check the value of `org-complex-heading-regexp-format' > in the buffer where the

Re: [O] org export for both latex and beamer, a recipe?

2014-01-22 Thread Joseph Vidal-Rosset
Many thanks for your replies. It helps. I will try to be more precise later on with an example. I do not forget this thread that I have opened. I will have soon a talk and a paper to publish on the base of this talk, I will goint to start with an org file. Sorry for the delay of my reply. I like