(Fdocumentation): Specify UNIBYTE = 0
when calling get_doc_string for a compiled function.
This commit is contained in:
parent
8db9dc66b1
commit
49da2e496a
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue