[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Orgmode] Release 6.17
From: |
Carsten Dominik |
Subject: |
Re: [Orgmode] Release 6.17 |
Date: |
Sun, 4 Jan 2009 09:22:02 +0100 |
On Jan 4, 2009, at 9:13 AM, Carsten Dominik wrote:
Hi,
I am releasing version 6.17 of Org-mode.
[...]
Line numbers and references in literal examples
------------------------------------------------
[...]
Here is an example:
#+begin_src emacs-lisp -n -r
(defmacro org-unmodified (&rest body) ((def))
"Execute body without changing `buffer-modified-p'."
`(set-buffer-modified-p ((back))
(prog1 (buffer-modified-p) ,@body)))
#+end_src
[[Line ((def))]] contains the macro name. Later at line
[[((back))]],
This did not come out right, it must be
[[((def))][Line ((def))]] contains the macro name. Later at line
[[((back))]]
i.e. the linke part of the link must be only the coderef cookie,
while the description part may contain additional text.
- Carsten