help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Documentation about elisp code


From: Tassilo Horn
Subject: Re: Documentation about elisp code
Date: Sun, 02 May 2021 10:21:09 +0200
User-agent: mu4e 1.5.12; emacs 28.0.50

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]