diff options
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 | } |