Re: [O] [PATCH] Wrap: override default

2012-12-24 Thread Michael Gauland
On 24/12/12 21:43, Bastien wrote > Well, the patch is wrong, if (cdr (assoc :wrap (nth 2 info))) > is in the (and ...) sexp, no need to have it in the (or ...) > sexp? > > I'll mark it as "not applicable". I let you propose another > patch if you still need to fix an issue in this area. > > Thanks

Re: [O] [PATCH] Wrap: override default

2012-12-24 Thread Bastien
Hi Michael, Michael Gauland writes: > (setq end (point-marker)) > ;; possibly wrap result > (cond > - ((assoc :wrap (nth 2 info)) > + ((and (assoc :wrap (nth 2 info)) > +(cdr (assoc :wrap (nth 2 info >

Re: [O] [PATCH] Wrap: override default

2012-12-13 Thread Bastien
Hi Eric, Michael Gauland writes: > * lisp/ob.el (org-babel-insert-result): only wrap if the :wrap value is > non-null. > > It can be convenient to specify the :wrap property at a higher level (e.g., > file > or tree), rather than for each block. This patch allows you to override the > propery

[O] [PATCH] Wrap: override default

2012-12-10 Thread Michael Gauland
* lisp/ob.el (org-babel-insert-result): only wrap if the :wrap value is non-null. It can be convenient to specify the :wrap property at a higher level (e.g., file or tree), rather than for each block. This patch allows you to override the propery by specifying :wrap with no argument. TINYCHANGE