Mercurial > emacs
changeset 22890:5044c732dbde
(Fdocumentation): Specify UNIBYTE = 0
when calling get_doc_string for a compiled function.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 02 Aug 1998 02:44:04 +0000 |
parents | beddbcd21407 |
children | 780c3ef895d7 |
files | src/doc.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/doc.c Sun Aug 02 02:43:47 1998 +0000 +++ b/src/doc.c Sun Aug 02 02:44:04 1998 +0000 @@ -320,7 +320,7 @@ 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 @@ 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; }