[Orgmode] Re: epresent and Org-mode: using Emacs to run presentations of Org-mode docs

2010-10-29 Thread Łukasz Stelmach
Eric Schulte schulte.e...@gmail.com writes: Łukasz Stelmach lukasz.stelm...@iem.pw.edu.pl writes: Richard Riley rile...@googlemail.com writes: Eric Schulte schulte.e...@gmail.com writes: Phil Hagelberg recently introduced me to epresent.el by Tom Tromey. It's a very nice little utility

Re: [Orgmode] Re: Internal links in LaTeX export

2010-10-29 Thread Tom Dye
Many thanks to all of you for figuring this out and fixing it. I can confirm that internal and external links both work in the pdf file compiled from the Org-mode LaTeX export, which is way cool and seems miraculous to a dirt archaeologist. All the best, Tom On Oct 28, 2010, at 7:01 PM,

Re: [Orgmode] Possible Calc support for Org-Babel?

2010-10-29 Thread Eric Schulte
Eric Schulte schulte.e...@gmail.com writes: Although I'm not familiar with using Calc as anything more than a 1-off calculator in the bottom of the frame (i.e. M-x calc) this sounds like a good approach to using calc to execute code blocks. Did I mention I'm not familiar with Calc. I've

[Orgmode] Release 7.02

2010-10-29 Thread Carsten Dominik
Dear all, I have release version 7.02 or Org-mode. Thanks to all who have contributed! Enjoy - Carsten Changes in version 7.02 Incompatible Changes ~ Code block hashes == Due to changes in the code resolving code block header arguments hashing of code

Re: [Orgmode] Possible Calc support for Org-Babel?

2010-10-29 Thread Carsten Dominik
Cool! - Carsten On Oct 29, 2010, at 8:42 AM, Eric Schulte wrote: Eric Schulte schulte.e...@gmail.com writes: Although I'm not familiar with using Calc as anything more than a 1- off calculator in the bottom of the frame (i.e. M-x calc) this sounds like a good approach to using calc to

Re: [Orgmode] Re: Internal links in LaTeX export

2010-10-29 Thread Nick Dokos
Noorul Islam K M noo...@noorul.com wrote: Carsten Dominik carsten.domi...@gmail.com writes: On Oct 29, 2010, at 5:22 AM, Jambunathan K wrote: Thomas S. Dye t...@tsdye.com writes: Aloha Jambunathan K., Yes, thanks for that suggestion. It should work on your example, but it

[Orgmode] parsing formatted text

2010-10-29 Thread Aidan Gauland
Hello, I have written an elisp program to generate an ATOM feed from an org-mode file. I want to generate appropiate HTML from fromatted text (such as *bold* and /italic/). Since it does not use org's export module (for which this isn't really appropriate anyway), I have no idea if there is any

Re: [Orgmode] Re: Internal links in LaTeX export

2010-10-29 Thread Noorul Islam
On Fri, Oct 29, 2010 at 12:50 PM, Nick Dokos nicholas.do...@hp.com wrote: Noorul Islam K M noo...@noorul.com wrote: Carsten Dominik carsten.domi...@gmail.com writes: On Oct 29, 2010, at 5:22 AM, Jambunathan K wrote: Thomas S. Dye t...@tsdye.com writes: Aloha Jambunathan K., Yes,

Re: [Orgmode] [Babel] Prefix for tangled files

2010-10-29 Thread Eric Schulte
Hi Seb, You could use the `org-babel-post-tangle-hook' to rename all tangled files behind some common prefix. Any function on this hook will be called once per tangled file from within the tangled file, so it could use the `buffer-file-name' to rename the file. Best -- Eric Sébastien Vauban

[Orgmode] [Babel] detangle

2010-10-29 Thread Eric Schulte
Hi, I've just added functions for detangling code from pure source code files back into code blocks in the org-mode files from whence they were tangled. This is done by the new `org-babel-detangle' function. Additionally the new `org-babel-tangle-jump-to-org' function can be used to navigate

Re: [Orgmode] parsing formatted text

2010-10-29 Thread Eric Schulte
Hi Aidan, You could pass the text through the `org-export-string' function to generate a string of HTML from a string of Org markup. e.g. (org-export-string plain plain *bold* plain html) returns the following string pplain plain bbold/b plain/p -- Eric Aidan Gauland

[Orgmode] [PATCH] org-compat: defalias string-match-p rather than defun

2010-10-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- lisp/org-compat.el |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/org-compat.el b/lisp/org-compat.el index d55a83e..47a6599 100644 --- a/lisp/org-compat.el +++ b/lisp/org-compat.el @@ -372,11 +372,11 @@ TIME

[Orgmode] Re: Release 7.02

2010-10-29 Thread Sébastien Vauban
Hi Carsten, Thanks a lot to you (and all others who made this happen) for this beautiful new version!! Carsten Dominik wrote: Lists handling === Due to changes made to lists, it is no longer possible to have a sublist, some text and then another sublist while still in the same

Re: [Orgmode] Re: Internal links in LaTeX export

2010-10-29 Thread Nick Dokos
Noorul Islam noo...@noorul.com wrote: For the same thing I get this \section{Foo} \label{sec-1} Here is a link to section Bar: \hyperref[sec-2]{Bar} \section{Bar} \label{sec-2} And here is an external link: \href{http://www.google.com}{google} You are right and I'm wrong:

[Orgmode] [PATCH] org-agenda: add support for category icons

2010-10-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- doc/org.texi |4 +++ lisp/org-agenda.el | 65 +++ 2 files changed, 63 insertions(+), 6 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index aa4f30b..41121d3 100644 ---

[Orgmode] Re: parsing formatted text

2010-10-29 Thread Aidan Gauland
Eric Schulte schulte.eric at gmail.com writes: You could pass the text through the `org-export-string' function to generate a string of HTML from a string of Org markup. e.g. (org-export-string plain plain *bold* plain html) returns the following string pplain plain bbold/b

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Carsten Dominik
Make footnotes work correctly in message-mode == The footnotes code now searches for the message delimiter -- in order to place footnotes before the signature. Thanks to Tassilo Horn for this patch. Just a detail: the delimiter is -- (space

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Carsten Dominik
Hi Sebastian, On Oct 29, 2010, at 10:30 AM, Sébastien Vauban wrote: Hi Carsten, Thanks a lot to you (and all others who made this happen) for this beautiful new version!! Carsten Dominik wrote: Lists handling === Due to changes made to lists, it is no longer possible to have

Re: [Orgmode] Worg: link broken

2010-10-29 Thread Noorul Islam
2010/10/28 Sébastien Vauban wxhgmqzgw...@spammotel.com: Hello, In page http://orgmode.org/guide/Working-With-Source-Code.html, see further reading: link chapter 14 broken (recursive, BTW?). Fix recursive link * doc/orgguide.texi: Remove broken recursive link Thanks and Regards Noorul diff

Re: [Orgmode] [PATCH] Fix typo

2010-10-29 Thread Bastien
Applied, thanks. PS: merging using pw didn't work so I did the change manually, meaning it will appear as *mine* - hope you don't mind! Julien Danjou jul...@danjou.info writes: Signed-off-by: Julien Danjou jul...@danjou.info --- ORGWEBPAGE/Changes.org |2 +- 1 files changed, 1

Re: [Orgmode] Re: Internal links in LaTeX export

2010-10-29 Thread Jambunathan K
Nick I hunted down the bug with heuristics. Speaking of bisections, In this instance, I actually bisected it down to the bad commit that Jambunathan K. identified (and Carsten reverted). I guess I was lucky in the sense that I pulled a couple of days ago, so HEAD was 851 commits ahead of

[Orgmode] Re: [WISH] Org Importers

2010-10-29 Thread Eric S Fraga
Matt Lundin m...@imapmail.org writes: FWIW, I have a home-brewed perl script that converts latex documents to org-mode files. Loosely based on latex2doc[1], it uses a latex style file (generated by the perl script) to markup the pdf output (e.g. asterisks for section headings, etc.). The

Re: [Orgmode] [PATCH] Fix typo

2010-10-29 Thread Julien Danjou
On Fri, Oct 29 2010, Bastien wrote: PS: merging using pw didn't work so I did the change manually, meaning it will appear as *mine* - hope you don't mind! You're forgiven. :) -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info ___

Re: [Orgmode] Re: epresent and Org-mode: using Emacs to run presentations of Org-mode docs

2010-10-29 Thread Eric S Fraga
Łukasz Stelmach lukasz.stelm...@iem.pw.edu.pl writes: [...] S5 and other HTML slide show frameworks have (at least) one great advantage over Beamer, one can embed (there are at least two ways) SVG image, which is quite hard with LaTeX/Beamer duo (is there any command-line tool to convert

Re: [Orgmode] Possible Calc support for Org-Babel?

2010-10-29 Thread Eric S Fraga
Eric, This is really nice! I had a problem initially in that calc-push-list was undefined. I had to initiate calc first so maybe a : (require 'calc) is required to ensure the functions you use are available? Then, out of the three examples you give, only one (3^3) worked. The others give

[Orgmode] Re: Possible Calc support for Org-Babel?

2010-10-29 Thread Sébastien Vauban
Hi Eric, Eric Schulte wrote: I've thrown together a very naive first pass at a function for evaluating calc code blocks. This inverts the normal calc (as I understand it) use of ' prefixes and assumes that every line is an algebraic expression unless that line is prefixed with a ' in which

[Orgmode] Re: Release 7.02

2010-10-29 Thread Sébastien Vauban
Hi Carsten, Carsten Dominik wrote: On Oct 29, 2010, at 10:30 AM, Sébastien Vauban wrote: Carsten Dominik wrote: Due to changes made to lists, it is no longer possible to have a sublist, some text and then another sublist while still in the same top- level list item, like in the following

Re: [Orgmode] proposal for enhanced org-get-priority function

2010-10-29 Thread I.S.
Sorry, I realized the previous patch did not contain updates to the org-priority-regexp. An updated patch is attached. Sorry, -I.S. On 10/27/2010 8:01 AM, I.S. wrote: On 10/24/2010 3:18 PM, David Maus wrote: At Wed, 20 Oct 2010 13:14:39 -0400, I.S. wrote: Dear Experts, I'd like to

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Carsten Dominik
On Oct 29, 2010, at 1:36 PM, Sébastien Vauban wrote: Hi Carsten, Carsten Dominik wrote: On Oct 29, 2010, at 10:30 AM, Sébastien Vauban wrote: Carsten Dominik wrote: Due to changes made to lists, it is no longer possible to have a sublist, some text and then another sublist while still in

Re: [Orgmode] proposal for enhanced org-get-priority function

2010-10-29 Thread I.S.
Sorry, previous patch had some junk in it. Attached is the final version (really). Sorry again for the confusion, -I.S. On 10/29/2010 7:45 AM, I.S. wrote: Sorry, I realized the previous patch did not contain updates to the org-priority-regexp. An updated patch is attached. Sorry, -I.S.

[Orgmode] 20101029_orgtexi_names.patch

2010-10-29 Thread Andreas Röhler
org-return diff --git a/doc/org.texi b/doc/org.texi index aa4f30b..9293804 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -1732,8 +1732,7 @@ necessary. @orgcmd...@key{tab},org-shifttab} Re-align, move to previous field. @c -...@kindex @key{RET} -...@item @key{RET}

[Orgmode] Re: epresent and Org-mode: using Emacs to run presentations of Org-mode docs

2010-10-29 Thread Łukasz Stelmach
Eric S Fraga ucec...@ucl.ac.uk writes: Łukasz Stelmach lukasz.stelm...@iem.pw.edu.pl writes: [...] S5 and other HTML slide show frameworks have (at least) one great advantage over Beamer, one can embed (there are at least two ways) SVG image, which is quite hard with LaTeX/Beamer duo (is

Re: [Orgmode] [CONCERN] Orgmode version string

2010-10-29 Thread Jambunathan K
Carsten Hi Jambunathan, On Oct 28, 2010, at 2:40 PM, Jambunathan K wrote: I have every reason to believe that upcoming version of Org would be tagged as 7.02. Earlier I had argued that version strings be version-to-list compatible. I would like to reiterate it. My real concern is that

[Orgmode] Re: Release 7.02

2010-10-29 Thread Łukasz Stelmach
Carsten Dominik carsten.domi...@gmail.com writes: Make footnotes work correctly in message-mode == The footnotes code now searches for the message delimiter -- in order to place footnotes before the signature. Thanks to Tassilo Horn for this

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Eric S Fraga
Carsten Dominik carsten.domi...@gmail.com writes: Make footnotes work correctly in message-mode == The footnotes code now searches for the message delimiter -- in order to place footnotes before the signature. Thanks to Tassilo Horn for this

Re: [Orgmode] Re: epresent and Org-mode: using Emacs to run presentations of Org-mode docs

2010-10-29 Thread Eric S Fraga
Łukasz Stelmach lukasz.stelm...@iem.pw.edu.pl writes: Eric S Fraga ucec...@ucl.ac.uk writes: ImageMagick [1] will convert from/to SVG to/from many formats including EPS. I've not tried any conversions with SVG, mind you, so this is based on the documentation. I'll check it, but I'm

[Orgmode] Re: Release 7.02

2010-10-29 Thread Jambunathan K
Carsten Dominik carsten.domi...@gmail.com writes: Dear all, I have release version 7.02 or Org-mode. Thanks to all who have contributed! Enjoy - Carsten Changes in version 7.02 1. Would be nice if Babel specific changes are in a separate headline. 2. Please mention support for Speed

Re: [Orgmode] [Babel] detangle

2010-10-29 Thread Eric S Fraga
Eric Schulte schulte.e...@gmail.com writes: Hi, I've just added functions for detangling code from pure source code files back into code blocks in the org-mode files from whence they were tangled. Wow. It just gets better all the time!! :-) This is done by the new `org-babel-detangle'

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Bastien
Łukasz Stelmach lukasz.stelm...@iem.pw.edu.pl writes: Thanks to Lukasz Setmann for a patch to this effect. ^^ Who's that guy? ;-) Fixed :) You even obtained a proper Ł in your first name. -- Bastien ___ Emacs-orgmode

[Accepted] [Orgmode] 20101029_orgtexi_names.patch

2010-10-29 Thread Bastien Guerry
Patch 355 (http://patchwork.newartisans.com/patch/355/) is now Accepted. Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C4CCABB44.1030703%40easy-emacs.de%3E Here is the original message containing the patch: Content-Type: text/plain; charset=utf-8

Re: [Orgmode] Re: Possible Calc support for Org-Babel?

2010-10-29 Thread Eric Schulte
Sébastien Vauban wxhgmqzgw...@spammotel.com writes: [...] executing Calc code block... if: Symbol's function definition is void: calc-push-list Required =calc= by calling =C-x * *=: hmm, I just pushed the actual ob-calc.el file up to the repository. Do you still get these errors if you

Re: [Orgmode] Possible Calc support for Org-Babel?

2010-10-29 Thread Eric Schulte
Eric S Fraga ucec...@ucl.ac.uk writes: Eric, This is really nice! I had a problem initially in that calc-push-list was undefined. I had to initiate calc first so maybe a : (require 'calc) Ah yes, that is in the ob-calc.el file, but not in the code snippet I shared. I'll commit this

Re: [Orgmode] [CONCERN] Orgmode version string

2010-10-29 Thread Bastien
Hi Jambunathan, Jambunathan K kjambunat...@gmail.com writes: Now that release-7.02 is out, I am a bit disappointed that a ELPA-tar named org-7.02.tar would be unusable. Let's fix this by having a conversation with the ELPA maintainers. Can you start a discussion off-list with me, Carsten,

[Orgmode] Re: TaskJuggler 3, revisited

2010-10-29 Thread Christian Egli
John Hendy jw.he...@gmail.com writes: - is there any progress on an exporter for tj3? Yes there is. See http://github.com/egli/org-mode/blob/master/lisp/org-taskjuggler.el - does anyone have a vague sketch of what needs to happen? The export to tj3 should basically work now. Just customize

Re: [Orgmode] [Babel] detangle

2010-10-29 Thread Eric Schulte
Hi Eric, The bug you mentioned should have been fixed by yesterday's commit ,[c6565eaa43d398f6771edd59c2bfe7ca54e4a93e] | commit c6565eaa43d398f6771edd59c2bfe7ca54e4a93e | Author: Eric Schulte schulte.e...@gmail.com | Date: Fri Oct 29 01:37:28 2010 -0600 | | fixed typos in tangle

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Eric Schulte
Hi, Sorry about this oversight, I must have missed it when trolling through the git logs. I've now added an entry on the Babel speed commands. Thanks -- Eric Jambunathan K kjambunat...@gmail.com writes: Carsten Dominik carsten.domi...@gmail.com writes: Dear all, I have release version

Re: [Orgmode] [Babel] detangle

2010-10-29 Thread Eric S Fraga
Eric Schulte schulte.e...@gmail.com writes: Hi Eric, The bug you mentioned should have been fixed by yesterday's commit ,[c6565eaa43d398f6771edd59c2bfe7ca54e4a93e] | commit c6565eaa43d398f6771edd59c2bfe7ca54e4a93e | Author: Eric Schulte schulte.e...@gmail.com | Date: Fri Oct 29

[Orgmode] Re: Release 7.02

2010-10-29 Thread Carsten Dominik
On Oct 29, 2010, at 4:02 PM, Jambunathan K wrote: Carsten Dominik carsten.domi...@gmail.com writes: Dear all, I have release version 7.02 or Org-mode. Thanks to all who have contributed! Enjoy - Carsten Changes in version 7.02 1. Would be nice if Babel specific changes are in a

Re: [Orgmode] [CONCERN] Orgmode version string

2010-10-29 Thread Carsten Dominik
On Oct 29, 2010, at 3:06 PM, Jambunathan K wrote: Carsten Hi Jambunathan, On Oct 28, 2010, at 2:40 PM, Jambunathan K wrote: I have every reason to believe that upcoming version of Org would be tagged as 7.02. Earlier I had argued that version strings be version-to-list compatible. I

Re: [Orgmode] Possible Calc support for Org-Babel?

2010-10-29 Thread Eric Schulte
Just FYI, I've just pushed up another fix for ob-calc.el which I found was required to avoid errors on evaluation of calc code blocks. Best -- Eric ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org

Re: [Orgmode] Re: Release 7.02

2010-10-29 Thread Nicolas Goaziou
Hello, Sébastien Vauban writes: Does that mean that we must admit this will stay like that forever, or will one try to look and see if it's possible to make that extension? Nobody said it was impossible. For now, it is unavailable because not satisfying enough. The main difficulty isn't

Re: [Orgmode] Re: [WISH] Org Importers

2010-10-29 Thread Matt Lundin
Jeff Horn jrhorn...@gmail.com writes: FWIW, I have a home-brewed perl script that converts latex documents to org-mode files. Loosely based on latex2doc[1], it uses a latex style file (generated by the perl script) to markup the pdf output (e.g. asterisks for section headings, etc.). The

Re: [Orgmode] Release 7.02

2010-10-29 Thread Jeff Horn
On Fri, Oct 29, 2010 at 2:49 AM, Carsten Dominik carsten.domi...@gmail.com wrote: Implement MathJax support == Org-mode now uses MathJax to display math on web pages.  We serve MathJax from the orgmode.org server, at least for the time being (thanks Bastien!).  If you

Re: [Orgmode] Release 7.02

2010-10-29 Thread Erik Iverson
Jeff Horn wrote: On Fri, Oct 29, 2010 at 2:49 AM, Carsten Dominik carsten.domi...@gmail.com wrote: Implement MathJax support == Org-mode now uses MathJax to display math on web pages. We serve MathJax from the orgmode.org server, at least for the time being (thanks

Re: [Orgmode] Release 7.02

2010-10-29 Thread Jeff Horn
Thanks. That did the trick. I think it may be a bit faster too, running on my server... but that could be my imagination. On Fri, Oct 29, 2010 at 2:03 PM, Erik Iverson er...@ccbr.umn.edu wrote: Jeff Horn wrote: On Fri, Oct 29, 2010 at 2:49 AM, Carsten Dominik carsten.domi...@gmail.com

Re: [Orgmode] Release 7.02

2010-10-29 Thread Erik Iverson
Jeff Horn wrote: Thanks. That did the trick. I think it may be a bit faster too, running on my server... but that could be my imagination. It is very likely faster. Also, note the following about using Firefox: http://www.mathjax.org/resources/faqs/#image-fonts On Fri, Oct 29, 2010 at

[Orgmode] Problem exporting

2010-10-29 Thread markscala
I updated to 7.02 today and now am unable to publish a project to html. This is the error reported in *Messages* Publishing file /home/mark/teach/10fall/metaphysics/notes/index.org using `org-publish-org-to-html' Exporting... tramp-convert-file-attributes: Wrong type argument: numberp,

Re: [Orgmode] Possible Calc support for Org-Babel?

2010-10-29 Thread Eric Schulte
Eric S Fraga ucec...@ucl.ac.uk writes: Eric Schulte schulte.e...@gmail.com writes: Eric S Fraga ucec...@ucl.ac.uk writes: Eric, This is really nice! I had a problem initially in that calc-push-list was undefined. I had to initiate calc first so maybe a : (require 'calc) Ah yes,

[Orgmode] [BUG] org-exp.el: Broken Internal Links

2010-10-29 Thread Jambunathan K
See Heading2 for description of the bug. This bug has been there since time immemorial. # Input Org file * Heading1 * Heading2 Link to [[Heading1]] is OK. Link to [[Heading3]] is broken. To fix this, org-link-search in org-export-target-internal-links should avoid matching on the

Re: [Orgmode] MobileOrg 1.5 for iPhone released with encryption support

2010-10-29 Thread Carsten Dominik
On Oct 29, 2010, at 9:00 PM, Richard Moreland wrote: Hi, I'd like to announce that MobileOrg 1.5 for iPhone was just approved and should be available in the AppStore (it may take a few hours to show up everywhere). Great. Thanks a lot, Richard!!! - Carsten This version supports

[Orgmode] Problem with publishing to html

2010-10-29 Thread markscala
I updated to 7.02 today and now am unable to publish a project to html. This is the error reported in *Messages* Publishing file /home/mark/teach/10fall/metaphysics/notes/index.org using `org-publish-org-to-html' Exporting... tramp-convert-file-attributes: Wrong type argument: numberp,

[Orgmode] requested feature

2010-10-29 Thread Marvin Doyley
Does anybody have a function that turns a org header into file with a link to the file where it originated from ? For example, lets say I have the following heading * Apples * Cherry * Tomatoes Lets say I have a mini project on Apples, it would be nice to issue a single command that turns

[Orgmode] Re: Unbillable clock time

2010-10-29 Thread Adam Elliott
Ross Patterson me at rpatterson.net writes: I would like to be able to designate some of my clock time as unbillable such that when using a clockreport the unbillable time is not included. I would also like to compare billable and unbillable time if possible. Back in March I submitted a patch

Re: [Orgmode] Problem with publishing to html

2010-10-29 Thread Noorul Islam
On Sat, Oct 30, 2010 at 4:23 AM, marksc...@gmail.com wrote: I updated to 7.02 today and now am unable to publish a project to html.  This is the error reported in *Messages* Publishing file /home/mark/teach/10fall/metaphysics/notes/index.org using `org-publish-org-to-html' Exporting...

Re: [Orgmode] [BUG] org-exp.el: Broken Internal Links

2010-10-29 Thread Noorul Islam
On Sat, Oct 30, 2010 at 2:56 AM, Jambunathan K kjambunat...@gmail.com wrote: See Heading2 for description of the bug. This bug has been there since time immemorial. # Input Org file * Heading1 * Heading2  Link to [[Heading1]] is OK. Link to [[Heading3]] is broken. To fix this,  

[Orgmode] Git pull has merge conflict

2010-10-29 Thread Noorul Islam
I am not sure why this conflict is arising even after resetting to head and then doing a pull $ noo...@sajida:~/emacs/org-mode$ git reset --hard HEAD is now at ba6b6f3 Merge branch 'master' of git://repo.or.cz/org-mode $ noo...@sajida:~/emacs/org-mode$ git pull Auto-merging ORGWEBPAGE/index.org

[Orgmode] [BUG] org-exp.el: Broken Internal Links on Fuzzy Match

2010-10-29 Thread Jambunathan K
(Refiling with added info, Thanks Noorul) See Heading2 for description of the bug. This bug has been there since time immemorial. (setq org-link-search-must-match-exact-headline nil) # Input Org file * Heading1 * Heading2 Link to [[Heading1]] is OK. Link to [[Heading3]] is broken. To