manual: Fix indentation in code blocks

This commit is contained in:
Jonas Bernoulli
2020-02-12 16:32:12 +01:00
parent 5f0013d797
commit 440ea3fe6f

View File

@ -2891,7 +2891,7 @@ Defining a new custom action comes down to writing an elisp-function to do the
work. Functions that operate on messages receive a @var{msg} parameter, which work. Functions that operate on messages receive a @var{msg} parameter, which
corresponds to the message at point. Something like: corresponds to the message at point. Something like:
@lisp @lisp
(defun my-action-func (msg) (defun my-action-func (msg)
"Describe my message function." "Describe my message function."
;; do stuff ;; do stuff
) )
@ -2903,7 +2903,7 @@ corresponds to the message at point, and an @var{attachment-num}, which is the
number of the attachment as seen in the message view. An attachment function number of the attachment as seen in the message view. An attachment function
looks like: looks like:
@lisp @lisp
(defun my-attachment-action-func (msg attachment-num) (defun my-attachment-action-func (msg attachment-num)
"Describe my attachment function." "Describe my attachment function."
;; do stuff ;; do stuff
) )