]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdocumentation): Specify UNIBYTE = 0
authorRichard M. Stallman <rms@gnu.org>
Sun, 2 Aug 1998 02:44:04 +0000 (02:44 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 2 Aug 1998 02:44:04 +0000 (02:44 +0000)
when calling get_doc_string for a compiled function.

src/doc.c

index bca93b60eab9fdea9c3aaf39270f5dcd8f551ce6..2f6b92216e2aaec204223a6b7cb285cb93438ac2 100644 (file)
--- a/src/doc.c
+++ b/src/doc.c
@@ -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;
        }