[Orgmode] [PATCH] inside table, delete-backward-char must not insert spaces when overwrite mode is on

2010-08-28 Thread Achim Gratz

* lisp/org.el (org-delete-backward-char): check for nil overwrite-mode before 
inserting 
spaces.

TINYCHANGE

There's probably a different/better way to do this, but this seemed the least 
intrusive.
This patch is in the public domain.
---
 lisp/org.el |8 +---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/lisp/org.el b/lisp/org.el
index bc62633..41f35d4 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -16597,9 +16597,11 @@ because, in this case the deletion might narrow the 
column."
(noalign (looking-at "[^|\n\r]*  |"))
(c org-table-may-need-update))
(backward-delete-char N)
-   (skip-chars-forward "^|")
-   (insert " ")
-   (goto-char (1- pos))
+   (if (not overwrite-mode)
+   (progn
+ (skip-chars-forward "^|")
+ (insert " ")
+ (goto-char (1- pos
;; noalign: if there were two spaces at the end, this field
;; does not determine the width of the column.
(if noalign (setq org-table-may-need-update c)))
-- 
1.7.1



Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

Factory and User Sound Singles for Waldorf rackAttack:
http://Synth.Stromeko.net/Downloads.html#WaldorfSounds


___
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


[Orgmode] org-mode on Nokia n800 - Was: Re: OT: orgmode on my palm TX?

2010-08-28 Thread Olivier Berger
Hi.

Eric S Fraga  writes:
>
> I cannot help you directly with the Palm but, in case you wish to
> consider a different little computer, the Nokia N810 (an internet
> tablet, not a phone) does a good job of running Emacs in a phone sized
> form factor (but with keyboard).  I was (and still am every now and
> again) using this specifically for org-mode.
>
> The latest incarnation of this system (which started with the N770 and
> progress through the N800 and N810) is the N900 which is now a phone
> as well as an internet table.  This also, I'm told, runs Emacs.

Great idea :-)

Are there packages for nokia n800 running OS 2008 ? I happen to have one
such device that could very well be used for this instead of collection
dust ;)

I've found a package for emacs 22
(http://danielsz.freeshell.org/code/mine/emacs-for-maemo/index.shtml)
but that all seems old and requires dependencies on unabailable packages
(libxaw).

Also emacs 22 is a bit too old maybe ?

Any hints would be welcome.

Best regards,
-- 
Olivier BERGER  - OpenPGP: 5819D7E8
Ingénieur Recherche - Dept INF - T&MSP (http://www.it-sudparis.eu)


___
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


[Orgmode] Re: org-capture : latest git pull, template selection broken ?

2010-08-28 Thread Noorul Islam K M
Dave Abrahams  writes:

> Julien Fantin  gmail.com> writes:
>
>> 
>> 
>> With the org-capture-templates described in the doc, right after the 
>> template selection, the buffer disappears, and the empty template
>> gets written to the target file. The following messages are output :
>> 
>> 
>> Clipboard pasted as level 2 subtree
>
> I'm seeing this message too, when I invoke org-capture.  What does it mean?

Please let us know which template did you use?

Are you talking about converting templates from remember to org-capture?

If so let us know the remember template that you used to convert.

Thanks and Regards
Noorul

___
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


[Orgmode] strike-through doesn't take effect in Aquamacs

2010-08-28 Thread kevinlin
Dear All:
  
 I switch from Carbon Emacs to Aquamacs (2.1) recently.
Org-mode works fine as expected except "strike-through".
Any configuration I shall do ?

 Thanks.

kevinlin






___
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


Re: [Orgmode] org-mode on Nokia n800 - Was: Re: OT: orgmode on my palm TX?

2010-08-28 Thread Eric S Fraga
On Sat, 28 Aug 2010 10:46:23 +0200, Olivier Berger 
 wrote:
> 
> Hi.
> 
> Eric S Fraga  writes:
> >
> > I cannot help you directly with the Palm but, in case you wish to
> > consider a different little computer, the Nokia N810 (an internet
> > tablet, not a phone) does a good job of running Emacs in a phone sized
> > form factor (but with keyboard).  I was (and still am every now and
> > again) using this specifically for org-mode.
> >
> > The latest incarnation of this system (which started with the N770 and
> > progress through the N800 and N810) is the N900 which is now a phone
> > as well as an internet table.  This also, I'm told, runs Emacs.
> 
> Great idea :-)
> 
> Are there packages for nokia n800 running OS 2008 ? I happen to have one
> such device that could very well be used for this instead of collection
> dust ;)
> 
> I've found a package for emacs 22
> (http://danielsz.freeshell.org/code/mine/emacs-for-maemo/index.shtml)
> but that all seems old and requires dependencies on unabailable packages
> (libxaw).

These are a few links I collected when I got my n800:

--8<---cut here---start->8---
*** nokia n800 emacs links:nokia:

- emacs on maemo :: 
http://danielsz.freeshell.org/code/mine/emacs-for-maemo/index.shtml

- installation of emacs22 :: 
http://djcbflux.blogspot.com/2008/02/waiting-for-22.html

- list of repositories :: 
http://www.gronmayer.com/it/index.php?lang=en&system=maemo4&sort=hits&show_pck=256

[2009-06-28 Sun 16:27]
--8<---cut here---end--->8---

All the libraries for emacs are available but you do need to search
around.  You should check out the repository search site at
http://www.gronmayer.com/it/

> Also emacs 22 is a bit too old maybe ?

No, I don't believe so (but I'm Carsten will tell us otherwise) as I
believe that all coding takes into account the differences between 22
and 23.x.

> Any hints would be welcome.

I would look at maemo.org, especially talk.maemo.org which is a very
comprehensive forum and wiki.maemo.org.

I found the N800 very usable with emacs, especially for capturing org
notes, but eventually wanted an actual keyboard for using email
(wanderlust in Emacs) so I got an N810 as well.  Both worked very well
and I used one or the other daily until a couple of months ago when I
got myself an Android phone.  The phone is not as good for org [1]
but is much better for on-the-move email because of 3G+wifi versus
wifi alone.

Hope this helps!

eric

Footnotes: 
[1]  yet: I'm hoping for MobileOrg for Android to
meet my needs eventually; I believe emacs is also possible for this
phone but I haven't tried yet

-- 
Eric S Fraga
GnuPG: 8F5C 279D 3907 E14A 5C29  570D C891 93D8 FFFC F67D
___
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


[Orgmode] Re: [Ann] Updates to org-drill (org topics as interactive " flashcards" using spaced repetition)

2010-08-28 Thread Detlef Steuer
On Sat, 28 Aug 2010 00:39:48 + (UTC)
Paul Sexton  wrote:

> For entry of more words "as you learn", I very strongly suggest setting 
> up an org capture template. 

Ahhh. Sometimes someone has to show you the obvious ...

Thx
Detlef 

> 
> Paul



___
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


[Orgmode] org-capture loses entered text when C-g on file selection

2010-08-28 Thread Greg Troxel

This may not technically be a bug, but it violated my expectations:

setup:

  (setq org-capture-templates
'(("t" "task" entry
   (file+headline "notes.org" "Refile")
   "* TODO %?\n  %U\n")))

Use 'C-c r' to start capturing.

Type 'foo'.

C-c C-w to start refiling

Type 'bar'.

Decide that you really didn't finish the note, and type C-g to get back
to editing the note.

Notice that your typed-in text is vanished.

C-h l output of a test case that shows this problem:

  C-c r f o o C-c C-w b a r C-g



pgpcNrIRq3MnP.pgp
Description: PGP signature
___
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


[Orgmode] Re: Org file rendering/manipulation too slow

2010-08-28 Thread Marcelo de Moraes Serpa
Hi Bernt,

It did help a lot, the rendering is faster and I can actually navigate
through my reference org file.

Would someone mind explaining me what this function does and why does
disabling it would make things faster.

Marcelo.

On Wed, Aug 25, 2010 at 2:45 PM, Bernt Hansen  wrote:
> Hi Marcelo,
>
> I don't use a Mac but someone on the #org-mode IRC channel mentioned
> trying this:
>
> (setq font-lock-verbose nil)
>
> HTH,
> Bernt
>
>
> Marcelo de Moraes Serpa  writes:
>
>> Any hints on this one? It's really annoying to handle (not so) large
>> org files in the OSX version of emacs. Maybe recompiling it with
>> different options?
>>
>> Marcelo.
>>
>> On Sat, Aug 7, 2010 at 5:38 AM, Manuel Hermenegildo  wrote:
>>>
>>>  > Might be related to the OSX build -- any other OSX users around? :)
>>>
>>> I also use Mac OS and I also see very slow performance when navigating
>>> through large org files. Basically, sometimes emacs will freeze for 20
>>> seconds or so when I switch to a large org buffer (about 30,000 lines,
>>> 1M --large but should be workable, see below). The strange thing is
>>> that it happens only sometimes.  When I get desperate (it can be very
>>> annoying) I switch to a -nw session inside a terminal and then
>>> everything works fine, so I do get the impression that it has to do
>>> with screen rendering in the OS X build. My current emacs version is
>>> 23.2.1. --Manuel
>>>
>>> --
>>> ---
>>>  Manuel Hermenegildo                     | Prof., C.S.Dept., T.U. Madrid 
>>> (UPM)
>>>  Director, IMDEA Software and CLIP Group | +34-91-336-7435 (W) -352-4819 
>>> (Fax)
>>> ---
>>>
>>>
>>
>> ___
>> 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
>

___
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


Re: [Orgmode] Re: feature request: a basic conversation manager

2010-08-28 Thread Jambunathan K

Carsten & Others

>> In the context of the original post, is there a possible way to do
>> this.
>> 
>> 1. I mark a TODO entry in todo.org as done.
>> 
>> 2. An org-id (say ID-TODO) gets created for the TODO entry if
>> there is none yet.
>> 
>> 3. The state transition to DONE triggers a capture rule. The
>> conversation is collected in a capture buffer and filed as a
>> heading under conversation.org.  An org-id (say ID-CONV) is
>> generated for the captured entry.
>> 
>> 4. ID-TODO is noted in the conversation.org 5. ID-CONV is noted
>> down in todo.org
>> 
>> Jambunathan K.

Eric> I guess you could use the org-after-todo-state-change-hook
Eric> together with the functionality of org-capture to implement
Eric> this quite easily?  Of course, this requires some emacs lisp
Eric> knowledge.

Thanks for accepting my earlier two patches on this thread.

I have identified couple of more things that are needed in org core to
support the above workflow. The changes required are minimal but enable
complex workflows.

[Context Switch]
Before I proceed further let me add this - 

The intention of this mail is to share my notes and influence you to
considering adding the needed support in the core. In effect the
attached patch is demo-only and not to be construed as a formal commit
request.
[Back to Original Context]

Needed features are:

1. Support for 'out-of-band' capture: Think of it as a
   org-add-log-setup for capture workflow. This is implemented as part
   of org-capture-setup in the enclosed patch.
 
   Note: Capture and Log Notes workflow are similar.
   + org-capture <=> org-add-log-note: Both of these routines pop-up
 notes buffers.

   + org-capture-finalize <=> org-store-log-note: Both dump the user
 notes to the user-specified position.

   + org-capture-setup <=> org-add-log-setup: Both make a note of the
 notes insertion position for later use. Note that they only setup
 the note taking process and don't by themselves collect or store
 notes.

   In some sense the addition of org-add-log-setup would make Log Notes
   and Org Capture closer together. ie., one can make org-capture
   supplant the simplistic Log Notes.
 
2. Support for chained captures: Think of it as per-capture-rule
   exit-hook. Unlike org-capture-before-finalize-hook (which gets
   invoked in the middle of the capture), this gets called right at
   the fag end of the capture after the capture buffer is saved or
   aborted and window configs are restored.
   
   This is implemented as part of a new :exit element in capture-plist
   in the attached patch.

What you need to do:

1. Apply the attached patch to org-mode.
1. Load conversation.el. 
2. Start with following todo.org entry.

# Sample ~/todo.org

* TODO Talk to someone
  SCHEDULED: <2010-09-08 Wed +1d>
  
3. Do a C-c C-t on the above entry
4. Do C-c C-t  once more.   

See the following magic happen

# TODO.org after 2 C-c C-t (s).

* TODO Talk to someone
  SCHEDULED: <2010-09-08 Wed +1d>
  :PROPERTIES:
  :ID:   47df1dd3-3101-4dda-95df-cac71ae7dcab
  :END:
   [[id:a9664246-f396-4084-abb0-0c2274e409cd][Conversation-199003770]] 
[2010-08-28 Sat 23:25]
   [[id:ee280862-750e-49ee-b3a4-2cebe655dae8][Conversation-446218316]] 
[2010-08-28 Sat 23:25]


# Conversation.org after 2 C-c C-t (s).
   
* Conversations

** Conversation-446218316
   :PROPERTIES:
   :ID:   ee280862-750e-49ee-b3a4-2cebe655dae8
   :END:
   TODO Context: [[id:47df1dd3-3101-4dda-95df-cac71ae7dcab][Talk to someone]]

** Conversation-199003770
   :PROPERTIES:
   :ID:   a9664246-f396-4084-abb0-0c2274e409cd
   :END:
   TODO Context: [[id:47df1dd3-3101-4dda-95df-cac71ae7dcab][Talk to someone]]
   
   
I have few more things to share. This after sometime or once you revert
with your comments.
   
Jambunathan K. 


Attachments:

;; Use ID for storing links
(setq org-link-to-org-use-id t)

;; trigger a capture on done
(add-hook 'org-after-todo-state-change-hook
  'my-todo-state-change-hook)

;; DONE on a todo item triggers a capture rule "x"
(defun my-todo-state-change-hook () 
  ""
  (when (member state org-done-keywords)
(org-capture-setup "x")))

;; org-capture-templates

;; Rule-x does this
;; - creates an entry in conversation.org
;; - saves a link to the parent TODO entry in the new conversation node
;; - exits with a call to my-update-todo-node defun

(setq org-capture-templates
  '(("x" "Create conversation node" entry
 (file+headline "~/conversation.org" "Conversations")
 "** Conversation-%(int-to-string (random))\n   TODO Context: %a\n   %?"
 :prepend t :empty-lines 1
 :exit (my-update-todo-node

;;  my-update-todo-node does this
;; - visits the last captured node (ie, the conversation node)
;; - installs a makeshift capture rule and invokes it
;;
;; makeshift capture rule installs a link to the newly created
;; conversation node in the todo

[Orgmode] Re: feature request: a basic conversation manager

2010-08-28 Thread Samuel Wales
Hi K,

Indeed, if that is what you want to do, you can do it without too much
effort, I think.  The conversation manager is a bit different, but
similar.

I have not looked at the conversation manager idea for some time.  At
the time I also wrote (and still have) more notes on it.  If anybody
is interested in the conversation manager, let me know.

There are many future possibilities for the conversation manager.

===> But please note the following <===

The most important thing is that in the meantime I came up with the
idea of ID markers, which actually significantly simplify these issues
and allow a large set of other possibilities, simultaneously.

So, if what you are doing is similar to the conversation manager (as
opposed to org-add-note or tweaks to allow capture to capture to
point, for example), then I think it is best for me to dredge out my
notes on ID markers (but you can visit my posts on them and get the
main idea).  My health is not up to doing a lot on it now, however, so
I would just post what I already did.

If what you are doing is different, such as getting org-capture to
capture to point, then it's probably not relevant.

Hope this helps.

Samuel

On 2010-08-18, Jambunathan K  wrote:
>
> In the context of the original post, is there a possible way to do this.
>
> 1. I mark a TODO entry in todo.org as done.
>
> 2. An org-id (say ID-TODO) gets created for the TODO entry if there is
>none yet.
>
> 3. The state transition to DONE triggers a capture rule. The
>conversation is collected in a capture buffer and filed as a heading
>under conversation.org.An org-id (say ID-CONV) is generated for
>the captured entry.
>
> 4. ID-TODO is noted in the conversation.org
> 5. ID-CONV is noted down in todo.org
>
> Jambunathan K.
>
>
>
>
>


-- 
Q: How many CDC "scientists" does it take to change a lightbulb?
A: "You only think it's dark." [CDC has denied a deadly disease for 25 years]
==
Retrovirus: http://www.wpinstitute.org/xmrv/index.html -- PLEASE DONATE
===
PNAS must publish the original Lo and Alter NIH/FDA XMRV paper
verbatim along with the new paper.

___
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


[Orgmode] Re: feature request: a basic conversation manager

2010-08-28 Thread Samuel Wales
More clearly:

  1) The conversation manager is basically superseded by the ID
markers idea.  That is, you can implement it trivially once ID markers
are implemented.
  2) What you are doing is not related to the conversation manager.

On 2010-08-28, Samuel Wales  wrote:
> Hi K,
>
> Indeed, if that is what you want to do, you can do it without too much
> effort, I think.  The conversation manager is a bit different, but
> similar.
>
> I have not looked at the conversation manager idea for some time.  At
> the time I also wrote (and still have) more notes on it.  If anybody
> is interested in the conversation manager, let me know.
>
> There are many future possibilities for the conversation manager.
>
> ===> But please note the following <===
>
> The most important thing is that in the meantime I came up with the
> idea of ID markers, which actually significantly simplify these issues
> and allow a large set of other possibilities, simultaneously.
>
> So, if what you are doing is similar to the conversation manager (as
> opposed to org-add-note or tweaks to allow capture to capture to
> point, for example), then I think it is best for me to dredge out my
> notes on ID markers (but you can visit my posts on them and get the
> main idea).  My health is not up to doing a lot on it now, however, so
> I would just post what I already did.
>
> If what you are doing is different, such as getting org-capture to
> capture to point, then it's probably not relevant.
>
> Hope this helps.
>
> Samuel
>
> On 2010-08-18, Jambunathan K  wrote:
>>
>> In the context of the original post, is there a possible way to do this.
>>
>> 1. I mark a TODO entry in todo.org as done.
>>
>> 2. An org-id (say ID-TODO) gets created for the TODO entry if there is
>>none yet.
>>
>> 3. The state transition to DONE triggers a capture rule. The
>>conversation is collected in a capture buffer and filed as a heading
>>under conversation.org.An org-id (say ID-CONV) is generated for
>>the captured entry.
>>
>> 4. ID-TODO is noted in the conversation.org
>> 5. ID-CONV is noted down in todo.org
>>
>> Jambunathan K.
>>
>>
>>
>>
>>
>
>
> --
> Q: How many CDC "scientists" does it take to change a lightbulb?
> A: "You only think it's dark." [CDC has denied a deadly disease for 25
> years]
> ==
> Retrovirus: http://www.wpinstitute.org/xmrv/index.html -- PLEASE DONATE
> ===
> PNAS must publish the original Lo and Alter NIH/FDA XMRV paper
> verbatim along with the new paper.
>


-- 
Q: How many CDC "scientists" does it take to change a lightbulb?
A: "You only think it's dark." [CDC has denied a deadly serious
disease for 25 years]
==
Retrovirus: http://www.wpinstitute.org/xmrv/index.html -- PLEASE DONATE
===
I would like to see the original Lo et al. 2010 NIH/FDA XMRV paper.

___
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


[Orgmode] Re: Org file rendering/manipulation too slow

2010-08-28 Thread Bernt Hansen
I think it's something like this:

It's a variable not a function.  I think it controls how much stuff is
written out via (message ...) calls in the implementation of font lock
code on your mac version of emacs lisp.  Calls to message are slow and
there are lots of them in this implementation.  This is just making it
skip these calls.

If anyone has better information than this speculation please chime
in :)

-Bernt


Marcelo de Moraes Serpa  writes:

> Hi Bernt,
>
> It did help a lot, the rendering is faster and I can actually navigate
> through my reference org file.
>
> Would someone mind explaining me what this function does and why does
> disabling it would make things faster.
>
> Marcelo.
>
> On Wed, Aug 25, 2010 at 2:45 PM, Bernt Hansen  wrote:
>> Hi Marcelo,
>>
>> I don't use a Mac but someone on the #org-mode IRC channel mentioned
>> trying this:
>>
>> (setq font-lock-verbose nil)
>>
>> HTH,
>> Bernt
>>
>>
>> Marcelo de Moraes Serpa  writes:
>>
>>> Any hints on this one? It's really annoying to handle (not so) large
>>> org files in the OSX version of emacs. Maybe recompiling it with
>>> different options?
>>>
>>> Marcelo.
>>>
>>> On Sat, Aug 7, 2010 at 5:38 AM, Manuel Hermenegildo  wrote:

  > Might be related to the OSX build -- any other OSX users around? :)

 I also use Mac OS and I also see very slow performance when navigating
 through large org files. Basically, sometimes emacs will freeze for 20
 seconds or so when I switch to a large org buffer (about 30,000 lines,
 1M --large but should be workable, see below). The strange thing is
 that it happens only sometimes.  When I get desperate (it can be very
 annoying) I switch to a -nw session inside a terminal and then
 everything works fine, so I do get the impression that it has to do
 with screen rendering in the OS X build. My current emacs version is
 23.2.1. --Manuel

 --
 ---
  Manuel Hermenegildo                     | Prof., C.S.Dept., T.U. Madrid 
 (UPM)
  Director, IMDEA Software and CLIP Group | +34-91-336-7435 (W) -352-4819 
 (Fax)
 ---


>>>
>>> ___
>>> 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
>>

___
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


[Orgmode] Re: feature request: a basic conversation manager

2010-08-28 Thread Jambunathan K

Samuel

Samuel> What you are doing is not related to the conversation
Samuel> manager.

I never claimed otherwise.

My use-case was clearly laid out and my patches are consistent with the
purpose stated in the original post.

If your concern is that I shouldn't be hijacking the subject line+thread
(and/or dilute it with non-core items), I totally respect that. I
promise to be careful next time.

Hope this settles things :-).

Jambunathan K.

___
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


[Orgmode] Re: feature request: a basic conversation manager

2010-08-28 Thread Samuel Wales
I'm not upset about anything.  Just didn't want anybody to be confused.
It seemed to me that you thought that what you were doing was related,
that's all.

On 2010-08-28, Jambunathan K  wrote:
>
> Samuel
>
> Samuel> What you are doing is not related to the conversation
> Samuel> manager.
>
> I never claimed otherwise.
>
> My use-case was clearly laid out and my patches are consistent with the
> purpose stated in the original post.
>
> If your concern is that I shouldn't be hijacking the subject line+thread
> (and/or dilute it with non-core items), I totally respect that. I
> promise to be careful next time.
>
> Hope this settles things :-).
>
> Jambunathan K.
>


-- 
Q: How many CDC "scientists" does it take to change a lightbulb?
A: "You only think it's dark." [CDC has denied a deadly serious
disease for 25 years]
==
Retrovirus: http://www.wpinstitute.org/xmrv/index.html -- PLEASE DONATE
===
I would like to see the original Lo et al. 2010 NIH/FDA XMRV paper.

___
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


[Orgmode] Bug: escaping a star in a heading [7.01trans]

2010-08-28 Thread Aidan Gauland
Escaping a star ('*') in a heading with a backslash works (i.e. exports
to a literal '*') when exporting to PDF (via LaTeX; probably because
LaTeX then processes it), but not when exporting to HTML.

My situation is that I have a heading which refers to a (C) pointer
variable, *x, "* A note on the variable *x".  When I exported this to
HTML, everything under the heading appeared as part of the heading.  I
then tried to escape the star with a backslash ("\*"), which eliminated
the confusion with the heading and its body, but the backslash showed up
in the heading: "* A note on the variable \*x".  This is obviously not
what I want, I wanted the backslash to prevent the star from being
treated by Org as rich-text markup (i.e. *bold*), and to be removed from
the final product.

Regards,
Aidan Gauland

Emacs  : GNU Emacs 24.0.50.5 (x86_64-unknown-linux-gnu, GTK+ Version 2.20.1)
 of 2010-08-26 on dimension8
Package: Org-mode version 7.01trans

current state:
==
(setq
 org-export-latex-after-initial-vars-hook '(org-beamer-after-initial-vars)
 org-agenda-files '("~/uc-files/uc-work.org")
 org-agenda-include-diary t
 org-completion-use-iswitchb t
 org-completion-use-ido t
 org-metaup-hook '(org-babel-load-in-session-maybe)
 org-after-todo-state-change-hook '(org-clock-out-if-current)
 org-export-blocks-postblock-hook '(org-exp-res/src-name-cleanup)
 org-export-latex-format-toc-function 'org-export-latex-format-toc-default
 org-export-preprocess-hook '(org-export-blocks-preprocess)
 org-tab-first-hook '(org-hide-block-toggle-maybe
org-babel-hide-result-toggle-maybe)
 org-src-mode-hook '(org-src-babel-configure-edit-buffer
org-src-mode-configure-edit-buffer)
 org-confirm-shell-link-function 'yes-or-no-p
 org-export-first-hook '(org-beamer-initialize-open-trackers)
 org-agenda-before-write-hook '(org-agenda-add-entry-text)
 org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
org-cycle-show-empty-lines

org-optimize-window-after-visibility-change)
 org-export-preprocess-before-normalizing-links-hook
'(org-remove-file-link-modifiers)
 org-mode-hook '(#[nil "\300\301\302\303\304$\207"
 
[org-add-hook change-major-mode-hook org-show-block-all append local] 5]
 #[nil 
"\300\301\302\303\304$\207"
 
[org-add-hook change-major-mode-hook org-babel-show-result-all
append local] 5]
 
org-babel-result-hide-spec org-babel-hide-all-hashes)
 org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point 
org-babel-execute-safely-maybe)
 org-confirm-elisp-link-function 'yes-or-no-p
 org-export-interblocks '((lob org-babel-exp-lob-one-liners) (src
org-babel-exp-inline-src-blocks))
 org-occur-hook '(org-first-headline-recenter)
 org-outline-path-complete-in-steps nil
 org-export-preprocess-before-selecting-backend-code-hook
'(org-beamer-select-beamer-code)
 org-export-latex-final-hook '(org-beamer-amend-header org-beamer-fix-toc
org-beamer-auto-fragile-frames

 
org-beamer-place-default-actions-for-lists)
 org-metadown-hook '(org-babel-pop-to-session-maybe)
 org-export-blocks '((src org-babel-exp-src-blocks nil) (comment
org-export-blocks-format-comment t)

 (ditaa org-export-blocks-format-ditaa nil) (dot
org-export-blocks-format-dot nil))
 )



signature.asc
Description: OpenPGP digital signature
___
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