aboutsummaryrefslogtreecommitdiffstats
path: root/src/doc.c
diff options
context:
space:
mode:
authorRichard M. Stallman1998-08-02 02:44:04 +0000
committerRichard M. Stallman1998-08-02 02:44:04 +0000
commit49da2e496a3aa14f51b234a9dc5c9b2e80e40a04 (patch)
tree5ce5847a8cc0282de1e8182ad8ebef40a1225fd9 /src/doc.c
parent8db9dc66b14344bb533b495615cf7d9fdcb46c87 (diff)
downloademacs-49da2e496a3aa14f51b234a9dc5c9b2e80e40a04.tar.gz
emacs-49da2e496a3aa14f51b234a9dc5c9b2e80e40a04.zip
(Fdocumentation): Specify UNIBYTE = 0
when calling get_doc_string for a compiled function.
Diffstat (limited to 'src/doc.c')
-rw-r--r--src/doc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc.c b/src/doc.c
index bca93b60eab..2f6b92216e2 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -320,7 +320,7 @@ string is passed through `substitute-command-keys'.")
320 if (STRINGP (tem)) 320 if (STRINGP (tem))
321 doc = tem; 321 doc = tem;
322 else if (NATNUMP (tem) || CONSP (tem)) 322 else if (NATNUMP (tem) || CONSP (tem))
323 doc = get_doc_string (tem, 1, 0); 323 doc = get_doc_string (tem, 0, 0);
324 else 324 else
325 return Qnil; 325 return Qnil;
326 } 326 }
@@ -348,7 +348,7 @@ subcommands.)");
348 in the function body, so reject them if they are last. */ 348 in the function body, so reject them if they are last. */
349 else if ((NATNUMP (tem) || CONSP (tem)) 349 else if ((NATNUMP (tem) || CONSP (tem))
350 && ! NILP (XCONS (tem1)->cdr)) 350 && ! NILP (XCONS (tem1)->cdr))
351 doc = get_doc_string (tem, 1, 0); 351 doc = get_doc_string (tem, 0, 0);
352 else 352 else
353 return Qnil; 353 return Qnil;
354 } 354 }