From 57ed84b204f50ed7c7ab23746d3f5a09b6e46f43 Mon Sep 17 00:00:00 2001 From: Raymond Toy Date: Fri, 14 Oct 2022 15:26:18 -0700 Subject: [PATCH] Address #41: Update displayed args for OPEN In the HTML manual, the args for `OPEN` didn't show all of the possible keyword args. This was caused by the incorrect use of the `@morekeys` and `@yetmorekeys` macros. These macros take arguments, and we forgot to put braces around the keywords that were meant as arguments for the macros. --- docs/cmu-user/unicode.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cmu-user/unicode.texi b/docs/cmu-user/unicode.texi index ca16e44..d8087e6 100644 --- a/docs/cmu-user/unicode.texi +++ b/docs/cmu-user/unicode.texi @@ -477,7 +477,7 @@ The Unicode data base is stored in compressed form in the file @file{ext-formats:unidata.bin}. If this file is not found, Unicode support is severely reduced; you can only use ASCII characters. -@defun open @args{@var{filename} @amprest{} @var{options} @keys{@kwd{direction} @kwd{element-type} @kwd{if-exists} @kwd{if-does-not-exist} @morekeys @kwd{class} @kwd{mapped} @kwd{input-handle} @kwd{output-handle} @yetmorekeys @kwd{external-format} @kwd{decoding-error} @kwd{encoding-error}}} +@defun open @args{@var{filename} @amprest{} @var{options} @keys{@kwd{direction} @kwd{element-type} @kwd{if-exists} @kwd{if-does-not-exist} @morekeys{@kwd{class} @kwd{mapped} @kwd{input-handle} @kwd{output-handle}} @yetmorekeys{@kwd{external-format} @kwd{decoding-error} @kwd{encoding-error}}}} The main options are covered elsewhere. Here we describe the options specific to Unicode. The option @kwd{external-format} -- GitLab