Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-07 Thread Carsten Dominik


On Sep 7, 2009, at 6:57 AM, Mark Elston wrote:


Melton Low wrote:

Sorry I made a mistake.
I only see it if I reverted org-mode back to 6.30d.  Works fine  
with this morning's git pull.


Hmm.  Well, as it turns out, so does mine.  Whatever the problem *was*
it appears to have gone away now.


Yes, for the time being I have reverted the commit which caused
the problem.  Just to make sure that normal users have a working
Org-mode and a good experience.  So when testing Tassilo's request,
please check out 6.30d before running the tests.

- Carsten



Mark


Mel
On Sun, Sep 6, 2009 at 4:32 PM, Melton Low softw@gmail.com mailto:softw@gmail.com 
 wrote:

   Yep problem still there.
   I'm using cvs build of Emacs 23.50.1 on Sept 3rd.
   org-mode build from git pull this morning
   Mac OS X 10.5.8 Intel
   On Sun, Sep 6, 2009 at 11:47 AM, Tassilo Horn
   tass...@member.fsf.org mailto:tass...@member.fsf.org wrote:
   Scott Otterson sco...@sharpleaf.org
   mailto:sco...@sharpleaf.org writes:
   Hi Scott  all others having that problem,
 I also see this problem.  In addition, links are rendered  
in

   plain
 text instead of being hidden.  I'm using emacs 23 on OS X.
   This bug is more than strange.  Till now, neither Carsten  
nor me was
   able to reproduce it, but people with different emacs  
versions on

   different platforms were bitten by it.
   Could you please all try to reproduce the problem this way:
   1. Create a file test.el with these contents:
   --8---cut here---start- 
8---

   (add-to-list 'load-path ~/path/to/org-mode/lisp/) ;; EDIT TO
   YOUR NEEDS
   (require 'org-install)
   (add-to-list 'auto-mode-alist '(\\.org$ . org-mode))
   --8---cut here---end--- 
8---

   2. Start emacs like this:
$ emacs -Q -l ~/path/to/test.el
   3. Open some org file and check if the problem still occurs.
   Bye,
   Tassilo
   ___
   Emacs-orgmode mailing list
   Remember: use `Reply All' to send replies to the list.
   Emacs-orgmode@gnu.org mailto:Emacs-orgmode@gnu.org
   http://lists.gnu.org/mailman/listinfo/emacs-orgmode

___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-07 Thread Mark Elston

Carsten,

Not sure why but now I see the problem on the *other* machine
as well (the one that didn't show the problem before).  This
is 6.30d.6.g2066.  I haven't updated this machine in the last
few days.

I don't know why I didn't see it before on this machine.  Nothing
has changed.  Perhaps I didn't test it properly.  The way it shows
up is that the *first* time you load a .org file there is no
fontification.  However, every time after that it works just fine.
I suppose I had already loaded a .org file and didn't remember
so I assumed it was working fine.  Sorry about that.

Mark

Carsten Dominik wrote:


On Sep 7, 2009, at 6:57 AM, Mark Elston wrote:


Melton Low wrote:

Sorry I made a mistake.
I only see it if I reverted org-mode back to 6.30d.  Works fine with 
this morning's git pull.


Hmm.  Well, as it turns out, so does mine.  Whatever the problem *was*
it appears to have gone away now.


Yes, for the time being I have reverted the commit which caused
the problem.  Just to make sure that normal users have a working
Org-mode and a good experience.  So when testing Tassilo's request,
please check out 6.30d before running the tests.

- Carsten



Mark




___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-07 Thread Melton Low
Tassilo,

Worked fine with either (setq org-modules nil) or (require 'org-gnus)
commented out. It stopped working if I comment out both.
Hope this help.

Mel

On Mon, Sep 7, 2009 at 12:17 PM, Mark Elston m_els...@comcast.net wrote:

 Tassilo,

 That did it!  Your message didn't have Carsten's message attached so I
 don't know what was in it, but you appear to be correct.

 I even commented out the last line (require 'org-gnus) and it still
 works.

 Mark

 Tassilo Horn wrote:

 Hi all!

 Could you please try another thing (with the git version where this bug
 occurs):

 1. Create a file test.el with these contents:

 --8---cut here---start-8---
 (add-to-list 'load-path ~/path/to/org-mode/lisp/) ;; EDIT TO YOUR NEEDS
 (setq org-modules nil)
 (require 'org-install)
 (add-to-list 'auto-mode-alist '(\\.org$ . org-mode))
 (require 'org-gnus)
 --8---cut here---end---8---

 2. Start emacs like this:

  $ emacs -Q -l ~/path/to/test.el

 3. Open some org file and check if the problem still occurs.

 If that works for you, I think that there's something wrong with the
 org-modules loading.  See also Carsten's forwarded message
 33919e72-45ab-4f50-8d5e-46807ac4b...@gmail.com.



 ___
 Emacs-orgmode mailing list
 Remember: use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode

___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-07 Thread Mark Elston

Tassilo,

Yes, I tried it both ways and it works both ways.

Mark

Tassilo Horn wrote:

Mark Elston m_els...@comcast.net writes:

Hi Mark!


That did it!  Your message didn't have Carsten's message attached so I
don't know what was in it, but you appear to be correct.


Another message Carsten forwarded, where fontification problems arose if
some org module was loaded by org's org-modules variable, which didn't
occur if the module in question was loaded explicitly by the user's
.emacs.


I even commented out the last line (require 'org-gnus) and it still
works.


But you tried also with it, right?  So we can say that the fontification
problems only exist if org-gnus was loaded by org's org-modules
variable.  If that's the case, then we've at least narrowed down the
problem to only a few lines of code.

Bye,
Tassilo



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode





___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-06 Thread Mark Elston

Yep.  Still see it.

Mark

Tassilo Horn wrote:

Scott Otterson sco...@sharpleaf.org writes:

Hi Scott  all others having that problem,


I also see this problem.  In addition, links are rendered in plain
text instead of being hidden.  I'm using emacs 23 on OS X.


This bug is more than strange.  Till now, neither Carsten nor me was
able to reproduce it, but people with different emacs versions on
different platforms were bitten by it.

Could you please all try to reproduce the problem this way:

1. Create a file test.el with these contents:

--8---cut here---start-8---
(add-to-list 'load-path ~/path/to/org-mode/lisp/) ;; EDIT TO YOUR NEEDS
(require 'org-install)
(add-to-list 'auto-mode-alist '(\\.org$ . org-mode))
--8---cut here---end---8---

2. Start emacs like this:

  $ emacs -Q -l ~/path/to/test.el

3. Open some org file and check if the problem still occurs.

Bye,
Tassilo



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode





___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-06 Thread Melton Low
Yep problem still there.
I'm using cvs build of Emacs 23.50.1 on Sept 3rd.
org-mode build from git pull this morning
Mac OS X 10.5.8 Intel

On Sun, Sep 6, 2009 at 11:47 AM, Tassilo Horn tass...@member.fsf.orgwrote:

 Scott Otterson sco...@sharpleaf.org writes:

 Hi Scott  all others having that problem,

  I also see this problem.  In addition, links are rendered in plain
  text instead of being hidden.  I'm using emacs 23 on OS X.

 This bug is more than strange.  Till now, neither Carsten nor me was
 able to reproduce it, but people with different emacs versions on
 different platforms were bitten by it.

 Could you please all try to reproduce the problem this way:

 1. Create a file test.el with these contents:

 --8---cut here---start-8---
 (add-to-list 'load-path ~/path/to/org-mode/lisp/) ;; EDIT TO YOUR NEEDS
 (require 'org-install)
 (add-to-list 'auto-mode-alist '(\\.org$ . org-mode))
 --8---cut here---end---8---

 2. Start emacs like this:

  $ emacs -Q -l ~/path/to/test.el

 3. Open some org file and check if the problem still occurs.

 Bye,
 Tassilo



 ___
 Emacs-orgmode mailing list
 Remember: use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode

___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-06 Thread Melton Low
Sorry I made a mistake.
I only see it if I reverted org-mode back to 6.30d.  Works fine with this
morning's git pull.

Mel

On Sun, Sep 6, 2009 at 4:32 PM, Melton Low softw@gmail.com wrote:

 Yep problem still there.
 I'm using cvs build of Emacs 23.50.1 on Sept 3rd.
 org-mode build from git pull this morning
 Mac OS X 10.5.8 Intel

 On Sun, Sep 6, 2009 at 11:47 AM, Tassilo Horn tass...@member.fsf.orgwrote:

 Scott Otterson sco...@sharpleaf.org writes:

 Hi Scott  all others having that problem,

  I also see this problem.  In addition, links are rendered in plain
  text instead of being hidden.  I'm using emacs 23 on OS X.

 This bug is more than strange.  Till now, neither Carsten nor me was
 able to reproduce it, but people with different emacs versions on
 different platforms were bitten by it.

 Could you please all try to reproduce the problem this way:

 1. Create a file test.el with these contents:

 --8---cut here---start-8---
 (add-to-list 'load-path ~/path/to/org-mode/lisp/) ;; EDIT TO YOUR NEEDS
 (require 'org-install)
 (add-to-list 'auto-mode-alist '(\\.org$ . org-mode))
 --8---cut here---end---8---

 2. Start emacs like this:

  $ emacs -Q -l ~/path/to/test.el

 3. Open some org file and check if the problem still occurs.

 Bye,
 Tassilo



 ___
 Emacs-orgmode mailing list
 Remember: use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-06 Thread Mark Elston

Melton Low wrote:

Sorry I made a mistake.

I only see it if I reverted org-mode back to 6.30d.  Works fine with 
this morning's git pull.




Hmm.  Well, as it turns out, so does mine.  Whatever the problem *was*
it appears to have gone away now.

Mark


Mel

On Sun, Sep 6, 2009 at 4:32 PM, Melton Low softw@gmail.com 
mailto:softw@gmail.com wrote:


Yep problem still there.

I'm using cvs build of Emacs 23.50.1 on Sept 3rd.
org-mode build from git pull this morning
Mac OS X 10.5.8 Intel

On Sun, Sep 6, 2009 at 11:47 AM, Tassilo Horn
tass...@member.fsf.org mailto:tass...@member.fsf.org wrote:

Scott Otterson sco...@sharpleaf.org
mailto:sco...@sharpleaf.org writes:

Hi Scott  all others having that problem,

  I also see this problem.  In addition, links are rendered in
plain
  text instead of being hidden.  I'm using emacs 23 on OS X.

This bug is more than strange.  Till now, neither Carsten nor me was
able to reproduce it, but people with different emacs versions on
different platforms were bitten by it.

Could you please all try to reproduce the problem this way:

1. Create a file test.el with these contents:

--8---cut here---start-8---
(add-to-list 'load-path ~/path/to/org-mode/lisp/) ;; EDIT TO
YOUR NEEDS
(require 'org-install)
(add-to-list 'auto-mode-alist '(\\.org$ . org-mode))
--8---cut here---end---8---

2. Start emacs like this:

 $ emacs -Q -l ~/path/to/test.el

3. Open some org file and check if the problem still occurs.

Bye,
Tassilo



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org mailto:Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode






___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-05 Thread Carsten Dominik

For now I have reverted the offending commit.

- Carsten

On Sep 5, 2009, at 7:42 AM, Carsten Dominik wrote:


Hi everyone,

I am still unable to reproduce this.  But I am running the latest  
cvs emacs.


Two questions:

- if you revert the critical commit, does the problem go away
- if you use the latest Emacs, does the problem go away?

Thanks.

- Carsten





On Sep 4, 2009, at 11:36 PM, Arne wrote:


Mark Elston m_elston at comcast.net writes:



Bernt Hansen wrote:

William Henney whenney at gmail.com writes:


I can reproduce that too


I have the same problem as well, fontification not working upon  
startup, but
working for subsequent loads within the emacs session.  Tried the  
org-bug-submit
feature, but that did not get out of my laptop (laptop problem, not  
an org
problem).I'm using the latest org-mode from the git repository  
6.30trans,
emacs 23.1.1, fedora 11.   Happens for all org files regardless  
of size or

header information.

Same .emacs file and same org files work fine with old version of  
org-mode on my

desktop.

If you need more information to aid debugging this let me know.

Arne

versus uncompiled files.  If I do a make clean removing all  
the .elc

files then it works (for that commit) - but after make there it no
fontification when the file is originally loaded.  The commit  
before

this one works with and without compiling.



I saw this problem on one of my machines yesterday and today as  
well.  I

thought I had done something wrong.


After loading compiled sources and starting a minimal emacs on the
provided test.org I get (Org Fly Ind Font) on the status line  
indicating

the active modes.

If I C-c C-c on the #+STARTUP: line it changes to (Org Fly Font)  
and

fontification returns.



The file I was seeing this with didn't have a #+... line so I found
that if I closed the file and re-opened it then it fontified it just
fine.

Trying it on a different file with a #+TITLE: line I see I can do  
the

C-cC-c thing and it works as well.

However, I have a different machine that doesn't exhibit this  
behavior
at all.  Loading a .org file brings it up fontified properly the  
first
time.  I will have to look into the differences between the  
settings for

these two machines.

Mark

___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode at gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode









___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




===
PLEASE NOTE NEW ADDRESS
===
prof.dr. Carsten Dominikdomi...@uva.nl
Astronomical Institute 'Anton Pannekoek'
www.astro.uva.nl/~dominik
Faculty of Science, University of Amsterdam phone   
+31-20-5257477/7491
SCIENCE PARK 904, ROOM C4-106   fax +31-20-5257484
1098 XH Amsterdam, The Netherlands
mail: PO BOX 94249, 1090GE, Amsterdam






___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-05 Thread Melton Low
I had reverted to 6.30c when the problem cropped up.
I too can confirm it is working again. I am using the latest cvs of emacs
from a couple of days ago.

Hope you figure it out.

Mel

On Fri, Sep 4, 2009 at 11:42 PM, Carsten Dominik
carsten.domi...@gmail.comwrote:

 Hi everyone,

 I am still unable to reproduce this.  But I am running the latest cvs
 emacs.

 Two questions:

 - if you revert the critical commit, does the problem go away
 - if you use the latest Emacs, does the problem go away?

 Thanks.

 - Carsten






 On Sep 4, 2009, at 11:36 PM, Arne wrote:

  Mark Elston m_elston at comcast.net writes:


 Bernt Hansen wrote:

 William Henney whenney at gmail.com writes:


 I can reproduce that too


 I have the same problem as well, fontification not working upon startup,
 but
 working for subsequent loads within the emacs session.  Tried the
 org-bug-submit
 feature, but that did not get out of my laptop (laptop problem, not an org
 problem).I'm using the latest org-mode from the git repository
 6.30trans,
 emacs 23.1.1, fedora 11.   Happens for all org files regardless of size
 or
 header information.

 Same .emacs file and same org files work fine with old version of org-mode
 on my
 desktop.

 If you need more information to aid debugging this let me know.

 Arne

  versus uncompiled files.  If I do a make clean removing all the .elc
 files then it works (for that commit) - but after make there it no
 fontification when the file is originally loaded.  The commit before
 this one works with and without compiling.


 I saw this problem on one of my machines yesterday and today as well.  I
 thought I had done something wrong.

  After loading compiled sources and starting a minimal emacs on the
 provided test.org I get (Org Fly Ind Font) on the status line
 indicating
 the active modes.

 If I C-c C-c on the #+STARTUP: line it changes to (Org Fly Font) and
 fontification returns.


 The file I was seeing this with didn't have a #+... line so I found
 that if I closed the file and re-opened it then it fontified it just
 fine.

 Trying it on a different file with a #+TITLE: line I see I can do the
 C-cC-c thing and it works as well.

 However, I have a different machine that doesn't exhibit this behavior
 at all.  Loading a .org file brings it up fontified properly the first
 time.  I will have to look into the differences between the settings for
 these two machines.

 Mark

 ___
 Emacs-orgmode mailing list
 Remember: use `Reply All' to send replies to the list.
 Emacs-orgmode at gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode








 ___
 Emacs-orgmode mailing list
 Remember: use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode




 ___
 Emacs-orgmode mailing list
 Remember: use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode

___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-04 Thread William Henney
On Fri, Sep 4, 2009 at 1:33 PM, Bernt Hansenbe...@norang.ca wrote:
 When I get a chance later today or this evening, I will try to
 identify which git commit the problem started for me.

 For that you want to use 'git bisect'


I see the same problem - no fontification at all in org mode. I used
the 'git bisect' method that Bernt suggested and this is the result:

--
79839719bfdf3b199657b22a4592691f6bfbb6db is first bad commit
commit 79839719bfdf3b199657b22a4592691f6bfbb6db
Author: Carsten Dominik carsten.domi...@gmail.com
Date:   Thu Sep 3 09:11:07 2009 +0200

Clean up external dependencies of org-gnus.el

Thanks to Tassilo Horn

:04 04 ab94524503804125c454ed40074c35a59152625d
da0881032308c32640d5a25e84c07d3e2f3a M  lisp
---

Hope this helps. My info from org-submit-bug-report is pasted below.

Will



Emacs  : GNU Emacs 22.3.1 (i386-apple-darwin9.7.0, Carbon Version 1.6.0)
 of 2009-06-07 on scarlett.local - Aquamacs Distribution 1.8c
Package: Org-mode version 6.30trans

current state:
==
(setq
 org-log-done t
 org-export-with-LaTeX-fragments t
 org-agenda-files '(~/Org/gargi.org ~/Org/newhouse.org
~/Teaching/Generales/2009-I/egc2009-I.org ~/Org/mhd.org
~/Teaching/Atmosferas/2008/evaluacion.org 
~/Org/mixing.org
~/Org/posgrado.org ~/Org/temarios/temarios.org 
~/Org/orion.org
~/Org/proplyd.org ~/Org/helix.org ~/Org/revmex.org 
~/Org/TODO.org
~/Org/garrelt-simulations.org ~/Org/orgjournal.org
~/Org/journalfigs.org)
 org-agenda-include-diary t
 org-blocker-hook '(org-block-todo-from-children-or-siblings-or-parent)
 org-hide-leading-stars t
 org-disputed-keys '(([(control tab)] . [(control shift tab)]))
 org-after-todo-state-change-hook '(org-clock-out-if-current)
 org-combined-agenda-icalendar-file /Library/WebServer/Documents/orgmode.ics
 org-startup-folded nil
 org-export-preprocess-hook '(org-export-blocks-preprocess)
 org-tab-first-hook '(org-hide-block-toggle-maybe)
 org-src-mode-hook '(org-src-mode-configure-edit-buffer)
 org-confirm-shell-link-function 'yes-or-no-p
 org-agenda-before-write-hook '(org-agenda-add-entry-text)
 org-export-language-setup '((en Author Date Table of Contents)
 (cs Autor Datum Obsah)
 (da Ophavsmand Dato Indhold)
 (de Autor Datum Inhaltsverzeichnis)
 (es Autor Fecha Índice)
 (fr Auteur Date Table des Mati\350res)
 (it Autore Data Indice)
 (nl Auteur Datum Inhoudsopgave)
 (nn Forfattar Dato Innhold)
 (sv F\366rfattarens Datum Inneh\345ll))
 org-default-notes-file ~/Org//notes.org
 org-directory ~/Org/
 org-calc-default-modes '(calc-internal-prec 20 calc-float-format
(float 5) calc-angle-mode
  deg calc-prefer-frac nil calc-symbolic-mode nil 
calc-date-format
  ( - MM - DD   Www (  HH : mm))
  calc-display-working-message t)
 org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
  org-cycle-show-empty-lines 
org-optimize-window-after-visibility-change)
 org-publish-project-alist '((temarios-html :base-directory ~/Org/temarios
  :publishing-directory 
/ssh:w...@crya:/http/pub/will
  :publishing-function org-publish-org-to-html 
:section-numbers
  nil :table-of-contents nil :style
  link rel=stylesheet\n
href=\temarios.css\\n type=\text/css\)
 (temarios-css :base-directory ~/Org/temarios
  :publishing-directory 
/ssh:w...@crya:/http/pub/will
  :base-extension css :publishing-function
  org-publish-attachment)
 (temarios :components (temarios-html 
temarios-css))
 (mhd-html :base-directory ~/Org/pub-mhd
  :publishing-directory 
/ssh:w...@crya:/http/pub/will/mhd
  :publishing-function org-publish-org-to-html 
:section-numbers
  nil :table-of-contents nil :style
  link rel=stylesheet\n
href=\will-org.css\\n type=\text/css\)
 (mhd-css :base-directory ~/Org/pub-mhd 
:publishing-directory
  /ssh:w...@crya:/http/pub/will/mhd 
:base-extension css
  :publishing-function org-publish-attachment)
 (mhd-images 

Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-04 Thread Mark Elston

Bernt Hansen wrote:

William Henney when...@gmail.com writes:


I can reproduce that too - but it behaves differently for compiled
versus uncompiled files.  If I do a make clean removing all the .elc
files then it works (for that commit) - but after make there it no
fontification when the file is originally loaded.  The commit before
this one works with and without compiling.



I saw this problem on one of my machines yesterday and today as well.  I
thought I had done something wrong.


After loading compiled sources and starting a minimal emacs on the
provided test.org I get (Org Fly Ind Font) on the status line indicating
the active modes.

If I C-c C-c on the #+STARTUP: line it changes to (Org Fly Font) and
fontification returns.



The file I was seeing this with didn't have a #+... line so I found
that if I closed the file and re-opened it then it fontified it just
fine.

Trying it on a different file with a #+TITLE: line I see I can do the
C-cC-c thing and it works as well.

However, I have a different machine that doesn't exhibit this behavior
at all.  Loading a .org file brings it up fontified properly the first
time.  I will have to look into the differences between the settings for
these two machines.

Mark


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-04 Thread Carsten Dominik

Hi everyone,

I am still unable to reproduce this.  But I am running the latest cvs  
emacs.


Two questions:

- if you revert the critical commit, does the problem go away
- if you use the latest Emacs, does the problem go away?

Thanks.

- Carsten





On Sep 4, 2009, at 11:36 PM, Arne wrote:


Mark Elston m_elston at comcast.net writes:



Bernt Hansen wrote:

William Henney whenney at gmail.com writes:


I can reproduce that too


I have the same problem as well, fontification not working upon  
startup, but
working for subsequent loads within the emacs session.  Tried the  
org-bug-submit
feature, but that did not get out of my laptop (laptop problem, not  
an org
problem).I'm using the latest org-mode from the git repository  
6.30trans,
emacs 23.1.1, fedora 11.   Happens for all org files regardless of  
size or

header information.

Same .emacs file and same org files work fine with old version of  
org-mode on my

desktop.

If you need more information to aid debugging this let me know.

Arne


versus uncompiled files.  If I do a make clean removing all the .elc
files then it works (for that commit) - but after make there it no
fontification when the file is originally loaded.  The commit before
this one works with and without compiling.



I saw this problem on one of my machines yesterday and today as  
well.  I

thought I had done something wrong.


After loading compiled sources and starting a minimal emacs on the
provided test.org I get (Org Fly Ind Font) on the status line  
indicating

the active modes.

If I C-c C-c on the #+STARTUP: line it changes to (Org Fly Font) and
fontification returns.



The file I was seeing this with didn't have a #+... line so I found
that if I closed the file and re-opened it then it fontified it just
fine.

Trying it on a different file with a #+TITLE: line I see I can do the
C-cC-c thing and it works as well.

However, I have a different machine that doesn't exhibit this  
behavior
at all.  Loading a .org file brings it up fontified properly the  
first
time.  I will have to look into the differences between the  
settings for

these two machines.

Mark

___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode at gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode









___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode