diff options
| author | Richard M. Stallman | 1994-09-17 00:29:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-09-17 00:29:03 +0000 |
| commit | f0f787b8b8b2dc42e4331aa082fbc91aaeec9271 (patch) | |
| tree | df7e9310ba86aa350fdf62bc8016bd98907991e5 /src | |
| parent | 81b328e5d1bb14f1ab603ef4fb7ce88955b3dd51 (diff) | |
| download | emacs-f0f787b8b8b2dc42e4331aa082fbc91aaeec9271.tar.gz emacs-f0f787b8b8b2dc42e4331aa082fbc91aaeec9271.zip | |
(Fdocumentation): Use EMACS_INT.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -125,10 +125,10 @@ string is passed through `substitute-command-keys'.") | |||
| 125 | { | 125 | { |
| 126 | case Lisp_Subr: | 126 | case Lisp_Subr: |
| 127 | if (XSUBR (fun)->doc == 0) return Qnil; | 127 | if (XSUBR (fun)->doc == 0) return Qnil; |
| 128 | if ((int) XSUBR (fun)->doc >= 0) | 128 | if ((EMACS_INT) XSUBR (fun)->doc >= 0) |
| 129 | doc = build_string (XSUBR (fun)->doc); | 129 | doc = build_string (XSUBR (fun)->doc); |
| 130 | else | 130 | else |
| 131 | doc = get_doc_string (- (int) XSUBR (fun)->doc); | 131 | doc = get_doc_string (- (EMACS_INT) XSUBR (fun)->doc); |
| 132 | break; | 132 | break; |
| 133 | 133 | ||
| 134 | case Lisp_Compiled: | 134 | case Lisp_Compiled: |