aboutsummaryrefslogtreecommitdiffstats
path: root/src/doc.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-27 16:48:43 -0700
committerPaul Eggert2011-04-27 16:48:43 -0700
commit4cf0fdcb1513f92f4ea7c35109fd28dc0e061113 (patch)
tree8e616154db0fe1bb9c1eb29dc497eb8dbaa6af49 /src/doc.c
parentea51cceb3c665c11cb3299e4bfd2545b1d1c3e9e (diff)
parentb71a1728a9e9eaee416178c6169d44a0e2aac5ea (diff)
downloademacs-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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/doc.c b/src/doc.c
index d27fa3f792d..3832eb3708d 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -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