diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-02-15 03:44:15 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-02-15 03:44:15 +0100 |
commit | a81dc34babc76e1fd09a23c9b59cad0ef612a95f (patch) | |
tree | ddaa89622fd586d87edea75d8c654a0e9f752cf4 | |
parent | b939f7ad359807e846831a9854e0d94260d9f084 (diff) | |
download | emacs-a81dc34babc76e1fd09a23c9b59cad0ef612a95f.tar.gz emacs-a81dc34babc76e1fd09a23c9b59cad0ef612a95f.tar.bz2 emacs-a81dc34babc76e1fd09a23c9b59cad0ef612a95f.zip |
Fix two syntax errors in Specification List
* doc/lispref/edebug.texi (Specification List): Add a couple of
missing @s.
-rw-r--r-- | doc/lispref/edebug.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/edebug.texi b/doc/lispref/edebug.texi index 3868f675ead..8942f55affb 100644 --- a/doc/lispref/edebug.texi +++ b/doc/lispref/edebug.texi @@ -1367,7 +1367,7 @@ Lets a function control the parsing of the remaining code. It takes the form @code{&interpose @var{spec} @var{fun} @var{args...}} and means that Edebug will first match @var{spec} against the code and then call @var{fun} with the code that matched @code{spec}, a parsing -function var{pf}, and finally @var{args...}. The parsing +function @var{pf}, and finally @var{args...}. The parsing function expects a single argument indicating the specification list to use to parse the remaining code. It should be called exactly once and returns the instrumented code that @var{fun} is expected to return. @@ -1375,7 +1375,7 @@ For example @code{(&interpose symbolp pcase--match-pat-args)} matches sexps whose first element is a symbol and then lets @code{pcase--match-pat-args} lookup the specs associated with that head symbol according to @code{pcase--match-pat-args} and -pass them to the var{pf} it received as argument. +pass them to the @var{pf} it received as argument. @item @var{other-symbol} @cindex indirect specifications |