On Sat, Mar 15, 2014 at 01:52:41PM +0100, Stefan Husmann wrote: > Hello, > > I think both entries in org.texi intrudueced in the mentioned commit should > begin with, say, @cindex rather than @index. > @index is not a texinfo command. > > org.texi:9892: unknown command `index' > org.texi:13806: unknown command `index' >
Patch attached. -- Suvayu Open source is the future. It sets us free.
>From 3816c170812cfa38b7428c0bc167b02462c54703 Mon Sep 17 00:00:00 2001 From: Suvayu Ali <fatkasuvayu+li...@gmail.com> Date: Sat, 15 Mar 2014 14:30:32 +0100 Subject: [PATCH] Fix info docs compilation issue --- doc/org.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index 7bc0247..492d8c5 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -9889,7 +9889,7 @@ In line [[(sc)]] we remember the current position. [[(jump)][Line (jump)]] jumps to point-min. @end example -@index indentation, in source blocks +@cindex indentation, in source blocks Finally, you can use @code{-i} to preserve the indentation of a specific code block (@pxref{Editing source code}). @@ -13803,7 +13803,7 @@ can be used to map arbitrary language names to existing major modes. @item org-src-window-setup Controls the way Emacs windows are rearranged when the edit buffer is created. @item org-src-preserve-indentation -@index indentation, in source blocks +@cindex indentation, in source blocks By default, the value is @code{nil}, which means that when code blocks are evaluated during export or tangled, they are re-inserted into the code block, which may replace sequences of spaces with tab characters. When non-nil, -- 1.8.3.1