diff options
| author | Richard M. Stallman | 1998-08-02 02:44:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-08-02 02:44:04 +0000 |
| commit | 49da2e496a3aa14f51b234a9dc5c9b2e80e40a04 (patch) | |
| tree | 5ce5847a8cc0282de1e8182ad8ebef40a1225fd9 /src | |
| parent | 8db9dc66b14344bb533b495615cf7d9fdcb46c87 (diff) | |
| download | emacs-49da2e496a3aa14f51b234a9dc5c9b2e80e40a04.tar.gz emacs-49da2e496a3aa14f51b234a9dc5c9b2e80e40a04.zip | |
(Fdocumentation): Specify UNIBYTE = 0
when calling get_doc_string for a compiled function.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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 | } |