mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-25 23:10:47 -08:00
(Fdocumentation): Use EMACS_INT.
This commit is contained in:
parent
81b328e5d1
commit
f0f787b8b8
1 changed files with 2 additions and 2 deletions
|
|
@ -125,10 +125,10 @@ string is passed through `substitute-command-keys'.")
|
|||
{
|
||||
case Lisp_Subr:
|
||||
if (XSUBR (fun)->doc == 0) return Qnil;
|
||||
if ((int) XSUBR (fun)->doc >= 0)
|
||||
if ((EMACS_INT) XSUBR (fun)->doc >= 0)
|
||||
doc = build_string (XSUBR (fun)->doc);
|
||||
else
|
||||
doc = get_doc_string (- (int) XSUBR (fun)->doc);
|
||||
doc = get_doc_string (- (EMACS_INT) XSUBR (fun)->doc);
|
||||
break;
|
||||
|
||||
case Lisp_Compiled:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue