From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: linking to emacs info nodes? Multiline comments? Date: Mon, 19 Apr 2010 11:00:05 -0400 Message-ID: <3776.1271689205@gamaville.dokosmarshall.org> References: Reply-To: nicholas.dokos@hp.com Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O3sSV-0006k7-Lu for emacs-orgmode@gnu.org; Mon, 19 Apr 2010 11:00:23 -0400 Received: from [140.186.70.92] (port=58340 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O3sSU-0006jV-0D for emacs-orgmode@gnu.org; Mon, 19 Apr 2010 11:00:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O3sSS-0008UJ-3O for emacs-orgmode@gnu.org; Mon, 19 Apr 2010 11:00:21 -0400 Received: from vms173013pub.verizon.net ([206.46.173.13]:42738) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O3sSR-0008U6-Uo for emacs-orgmode@gnu.org; Mon, 19 Apr 2010 11:00:20 -0400 Received: from gamaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173013.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0L1400AVUPTRRGH5@vms173013.mailsrvcs.net> for emacs-orgmode@gnu.org; Mon, 19 Apr 2010 10:03:28 -0500 (CDT) In-reply-to: Message from LanX of "Mon, 19 Apr 2010 16:26:13 +0200." List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: LanX Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org LanX wrote: > is there an easy way to insert links to the emacs info manuals? > > the following works for commands only > > [[elisp:(Info-goto-emacs-command-node "Info-goto-emacs-command-node")][Info > goto emacs command node]] > Assuming you have done the standard keybindings (C-c l for org-store-link everywhere - see section 1.3, "Activation", in the Org manual for more details): Visit the info node of interest, do C-c l to store the link, then visit an org file and do C-c C-l to insert the link. Here is an example of what was inserted, when I tried the above procedure on the indicated Info node: [[info:org:Processing%20LaTeX%20fragments][Processing LaTeX fragments]] > BTW: whats the recommended way to insert multi-line comments in elisp code? > > ATM I'm assigning a string to a dummy variable, with the drawback that > doublequotes are forbidden: > > (setq org " > yadda yadda > ") > I don't understand the context (why do you have to define a variable exactly?), but you can include double quotes in a lisp string by escaping it with a backslash: (setq org " yadda \"yadda\" ") see section 2.3.8.1, "Syntax for Strings" in the Elisp manual. HTH, Nick