From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.help Subject: Re: Documentation about elisp code Date: Sun, 02 May 2021 10:21:09 +0200 Message-ID: <87eeepv8zs.fsf@gnu.org> References: <87pmy9vctv.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="6698"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: mu4e 1.5.12; emacs 28.0.50 Cc: help-gnu-emacs@gnu.org To: steve-humphreys@gmx.com Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Sun May 02 10:25:14 2021 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ld7Pe-0001eR-8T for geh-help-gnu-emacs@m.gmane-mx.org; Sun, 02 May 2021 10:25:14 +0200 Original-Received: from localhost ([::1]:48410 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ld7Pd-0004yF-Am for geh-help-gnu-emacs@m.gmane-mx.org; Sun, 02 May 2021 04:25:13 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:33324) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ld7Ov-0004xB-DX for help-gnu-emacs@gnu.org; Sun, 02 May 2021 04:24:29 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:58031) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ld7Ov-0007J9-1V; Sun, 02 May 2021 04:24:29 -0400 Original-Received: from auth1-smtp.messagingengine.com ([66.111.4.227]:43881) by fencepost.gnu.org with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256) (Exim 4.82) (envelope-from ) id 1ld7Ou-000739-5j; Sun, 02 May 2021 04:24:28 -0400 Original-Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailauth.nyi.internal (Postfix) with ESMTP id 8EE2A27C0054; Sun, 2 May 2021 04:24:27 -0400 (EDT) Original-Received: from mailfrontend2 ([10.202.2.163]) by compute3.internal (MEProxy); Sun, 02 May 2021 04:24:27 -0400 X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduledrvdefuddgheegucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucenucfjughrpehffgfhvffuffgjkfggtgesthdtre dttdertdenucfhrhhomhepvfgrshhsihhlohcujfhorhhnuceothhsughhsehgnhhurdho rhhgqeenucggtffrrghtthgvrhhnpeevveeikeetkeeviefgfeffiedvteeguddvffeuue duveegtddthedvhfeuveffhfenucfkphepkeejrdduieefrdefuddrudehgeenucevlhhu shhtvghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpehthhhorhhnodhmvg hsmhhtphgruhhthhhpvghrshhonhgrlhhithihqdekieejfeekjeekgedqieefhedvleek qdhtshguhheppehgnhhurdhorhhgsehfrghsthhmrghilhdrfhhm X-ME-Proxy: Original-Received: from thinkpad-t440p (p57a31f9a.dip0.t-ipconnect.de [87.163.31.154]) by mail.messagingengine.com (Postfix) with ESMTPA; Sun, 2 May 2021 04:24:26 -0400 (EDT) In-reply-to: X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:129316 Archived-At: steve-humphreys@gmx.com writes: > Have tried your suggestion, but the funtion is not clickable > > (defun guide () > "`guidance-ediff'" > > (message "guide") ) It it defined? It will only be clickable if it is a function which is actually defined when you view the docs. For example, when evaluating those two functions, they are linked in *Help* and I can switch between them by following the link: --8<---------------cut here---------------start------------->8--- (defun th/foo () "See `th/bar'." nil) (defun th/bar () "See `th/foo'." nil) --8<---------------cut here---------------end--------------->8--- Bye, Tassilo