diff options
Diffstat (limited to 'src/doc.c')
| -rw-r--r-- | src/doc.c | 2 |
1 files changed, 2 insertions, 0 deletions
| @@ -347,6 +347,8 @@ string is passed through `substitute-command-keys'. */) | |||
| 347 | { | 347 | { |
| 348 | if (XSUBR (fun)->doc == 0) | 348 | if (XSUBR (fun)->doc == 0) |
| 349 | return Qnil; | 349 | return Qnil; |
| 350 | /* FIXME: This is not portable, as it assumes that string | ||
| 351 | pointers have the top bit clear. */ | ||
| 350 | else if ((EMACS_INT) XSUBR (fun)->doc >= 0) | 352 | else if ((EMACS_INT) XSUBR (fun)->doc >= 0) |
| 351 | doc = build_string (XSUBR (fun)->doc); | 353 | doc = build_string (XSUBR (fun)->doc); |
| 352 | else | 354 | else |