diff options
author | Glenn Morris <rgm@gnu.org> | 2016-11-15 19:18:28 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2016-11-15 19:18:28 -0500 |
commit | 1fc101b0c4009e664c102b896e8d510f4821e754 (patch) | |
tree | daecaba55163f5ae51c1491161824cfd8c87b2b8 /doc/lispref/control.texi | |
parent | 91aa5d19237fa54ff28abaa2ec07627b52e76a7f (diff) | |
download | emacs-1fc101b0c4009e664c102b896e8d510f4821e754.tar.gz |
Don't confuse how Texinfo outputs @var with the input
* doc/emacs/rmail.texi (Movemail):
* doc/lispref/control.texi (Pattern matching case statement):
* doc/lispref/frames.texi (Size and Position):
* doc/lispref/processes.texi (Asynchronous Processes):
* doc/lispref/text.texi (Document Object Model):
* doc/lispref/windows.texi (Coordinates and Windows):
Do not upper-case the argument of @var.
Diffstat (limited to 'doc/lispref/control.texi')
-rw-r--r-- | doc/lispref/control.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi index 0c0827909a3..947c54f9c35 100644 --- a/doc/lispref/control.texi +++ b/doc/lispref/control.texi @@ -368,7 +368,7 @@ UPattern. For example: @item (app @var{function} @var{upattern}) Matches if @var{function} applied to the value being matched returns a value that matches @var{upattern}. This is like the @code{pred} -UPattern, except that it tests the result against @var{UPattern}, +UPattern, except that it tests the result against @var{upattern}, rather than against a boolean truth value. The @var{function} call can use one of the forms described below. @item (or @var{upattern1} @var{upattern2}@dots{}) |