(Fdocumentation): Specify UNIBYTE = 0

when calling get_doc_string for a compiled function.
This commit is contained in:
Richard M. Stallman 1998-08-02 02:44:04 +00:00
parent 8db9dc66b1
commit 49da2e496a

View file

@ -320,7 +320,7 @@ string is passed through `substitute-command-keys'.")
if (STRINGP (tem))
doc = tem;
else if (NATNUMP (tem) || CONSP (tem))
doc = get_doc_string (tem, 1, 0);
doc = get_doc_string (tem, 0, 0);
else
return Qnil;
}
@ -348,7 +348,7 @@ subcommands.)");
in the function body, so reject them if they are last. */
else if ((NATNUMP (tem) || CONSP (tem))
&& ! NILP (XCONS (tem1)->cdr))
doc = get_doc_string (tem, 1, 0);
doc = get_doc_string (tem, 0, 0);
else
return Qnil;
}