Re: [O] Fontification of collapsed sections with code blocks

2016-11-01 Thread Maciek Starzyk
Hi Nicolas,

Checked with the latest org (release_8.3.6-1267-g58dbdb), and it still
shows the source block face when collapsed.
Org-ellipsis face and text can be customised though. See attached
screenshot.
Adding an empty line after the block does fix it, so it is really just an
aesthetic nitpick :)

Thanks,
Maciek


On Tue, Nov 1, 2016 at 9:14 AM, Nicolas Goaziou <m...@nicolasgoaziou.fr>
wrote:

> Hello,
>
> Maciek Starzyk <mstar...@gmail.com> writes:
>
> > Not sure if this is a bug or a feature:
> > Collapsed sections, which end with a source code block, have the same
> font
> > (from the ellipsis until the end of line) as the code block last line.
> The
> > face name is `org-block-end-line'.
> > This propagates also to parent sections.
> >
> > Is there a setting that switches this behavior off ?
>
> I think this was fixed recently (commit
> 191fe8209f9cad3f0a90dd105df4474861be5ad9).
>
> Regards,
>
> --
> Nicolas Goaziou
>


[O] Fontification of collapsed sections with code blocks

2016-10-31 Thread Maciek Starzyk
Hi list,
Not sure if this is a bug or a feature:
Collapsed sections, which end with a source code block, have the same font
(from the ellipsis until the end of line) as the code block last line. The
face name is `org-block-end-line'.
This propagates also to parent sections.

Is there a setting that switches this behavior off ?
See the attached screenshot for an example.

Cheers,
-- 
Maciek


Re: [O] org-mode git, el-get, recently many functions' defintion void

2013-02-24 Thread Maciek Starzyk
Hi Jeff,

Try removing contrib/lisp from the load path in el-get's org-mode recipe.
It resolved the missing org-element-context issue for me.

Cheers,
Maciek

diff --git a/recipes/org-mode.rcp b/recipes/org-mode.rcp
index 32d988e..daf5e41 100644
--- a/recipes/org-mode.rcp
+++ b/recipes/org-mode.rcp
@@ -12,4 +12,4 @@
  (lambda (target)
(list make target (concat EMACS=
(shell-quote-argument el-get-emacs
  '(oldorg))
-   :load-path (. lisp contrib/lisp))
+   :load-path (. lisp))



On Wed, Feb 20, 2013 at 6:38 AM, Jeff Kowalczyk j...@yahoo.com wrote:

 I use emacs-24, org-mode from git, el-get from git. Each morning I update
 org-mode, make clean  make.

 About 2-3 days ago, I noticed the org-export dispatcher wasn't working.
 Then I
 saw increasing functional areas of org returning errors re: function
 definition
 void:

 : org-ctrl-c-ctrl-c: Symbol's function definition is void:
 org-element-context
 : Updating dynamic block `clocktable' at line 100276...
 : org-clocktable-write-default: Symbol's function definition is void:
 org-table-align

 To eliminate possible interactions of recent changes. I've checked out
 org-mode
 from a week ago, and same with el-get. There is no change in the problem.
 I've
 removed el-get .loaddefs.el[c], and allowed them to regenerate.

 Any suggestions on how to debug? It certainly could be el-get and nothing
 to do
 with org-mode.

 Thanks,
 Jeff






-- 
Maciek Starzyk


[O] [PATCH] org-table.el: Calc formulas evaluate to #ERROR.

2011-07-03 Thread Maciek Starzyk
This fixes regression bug introduced in
2e20cf9358deb9579ae6a22bc0deb2a772387194

diff --git a/lisp/org-table.el b/lisp/org-table.el
index a7fc863..9724dc2 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -2513,13 +2513,13 @@ not overwrite the stored one.
(error #ERROR))
   ev (if (numberp ev) (number-to-string ev) ev)
   ev (if duration (org-table-time-seconds-to-string
-   (string-to-number ev
+   (string-to-number ev)) ev))
   (or (fboundp 'calc-eval)
   (error Calc does not seem to be installed, and is needed to
evaluate the formula))
   (setq ev (calc-eval (cons form modes)
   (if numbers 'num))
 ev (if duration (org-table-time-seconds-to-string
- (string-to-number ev)
+ (string-to-number ev)) ev)))

 (when org-table-formula-debug
   (with-output-to-temp-buffer *Substitution History*


-- 
Maciek Starzyk


[Orgmode] [PATCH] Add babel lang files to distribution file

2010-07-03 Thread Maciek Starzyk
Hi,
This small patch adds babel lang files to the distribution file.

Maciek

diff --git a/Makefile b/Makefile
index 389b268..f936d0a 100644
--- a/Makefile
+++ b/Makefile
@@ -304,6 +304,7 @@ distfile:
$(MKDIR) org-$(TAG)/lisp/babel/langs
cp -r $(LISPFILES) org-$(TAG)/lisp
cp -r $(LISPBFILES) org-$(TAG)/lisp/babel
+ cp -r $(LISPBLFILES) org-$(TAG)/lisp/babel/langs
cp -r $(DOCFILES) $(CARDFILES) org-$(TAG)/doc
cp -r $(DISTFILES_extra) org-$(TAG)/
cp -r README_DIST org-$(TAG)/README
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode