diff options
| author | Paul Eggert | 2011-04-27 16:48:43 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-27 16:48:43 -0700 |
| commit | 4cf0fdcb1513f92f4ea7c35109fd28dc0e061113 (patch) | |
| tree | 8e616154db0fe1bb9c1eb29dc497eb8dbaa6af49 /src/doc.c | |
| parent | ea51cceb3c665c11cb3299e4bfd2545b1d1c3e9e (diff) | |
| parent | b71a1728a9e9eaee416178c6169d44a0e2aac5ea (diff) | |
| download | emacs-4cf0fdcb1513f92f4ea7c35109fd28dc0e061113.tar.gz emacs-4cf0fdcb1513f92f4ea7c35109fd28dc0e061113.zip | |
Merge: * doprnt.c (doprnt): Support "ll" length modifier, for long long.
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 |