diff options
| author | Dave Love | 1999-10-18 14:00:19 +0000 |
|---|---|---|
| committer | Dave Love | 1999-10-18 14:00:19 +0000 |
| commit | 54f696ea5e9b3bd6964ae35e463478f62ae1fadf (patch) | |
| tree | 590d596d13839cb45e9953238f65ad457501535d /src/doc.c | |
| parent | 39c76d3e7ad1dde3a7bfa0ce1b17e48c878310c0 (diff) | |
| download | emacs-54f696ea5e9b3bd6964ae35e463478f62ae1fadf.tar.gz emacs-54f696ea5e9b3bd6964ae35e463478f62ae1fadf.zip | |
(Fdocumentation_property): Gcpro `tem'.
Diffstat (limited to 'src/doc.c')
| -rw-r--r-- | src/doc.c | 8 |
1 files changed, 7 insertions, 1 deletions
| @@ -400,7 +400,13 @@ translation.") | |||
| 400 | else if (CONSP (tem)) | 400 | else if (CONSP (tem)) |
| 401 | tem = get_doc_string (tem, 0, 0); | 401 | tem = get_doc_string (tem, 0, 0); |
| 402 | if (NILP (raw) && STRINGP (tem)) | 402 | if (NILP (raw) && STRINGP (tem)) |
| 403 | return Fsubstitute_command_keys (tem); | 403 | { |
| 404 | struct gcpro gcpro1; | ||
| 405 | |||
| 406 | GCPRO1 (tem); | ||
| 407 | return Fsubstitute_command_keys (tem); | ||
| 408 | UNGCPRO; | ||
| 409 | } | ||
| 404 | return tem; | 410 | return tem; |
| 405 | } | 411 | } |
| 406 | 412 | ||