diff options
| author | Tom Tromey | 2018-07-06 21:56:17 -0600 |
|---|---|---|
| committer | Tom Tromey | 2018-07-12 22:12:27 -0600 |
| commit | 42fe787b0f26c2df682b2797407a669ef8522ccb (patch) | |
| tree | e944fe465e2b65703a8361bc82647faf4f7907f1 /src/disptab.h | |
| parent | 01dbf2a347944497fdcf2ec156f4605020d7ba2a (diff) | |
| download | emacs-42fe787b0f26c2df682b2797407a669ef8522ccb.tar.gz emacs-42fe787b0f26c2df682b2797407a669ef8522ccb.zip | |
Rename integerp->fixnum, etc, in preparation for bignums
* src/json.c, src/keyboard.c, src/keyboard.h, src/keymap.c,
src/kqueue.c, src/lcms.c, src/lisp.h, src/lread.c, src/macros.c,
src/marker.c, src/menu.c, src/minibuf.c, src/msdos.c, src/print.c,
src/process.c, src/profiler.c, src/search.c, src/sound.c,
src/syntax.c, src/sysdep.c, src/term.c, src/terminal.c,
src/textprop.c, src/undo.c, src/w16select.c, src/w32.c,
src/w32console.c, src/w32cygwinx.c, src/w32fns.c, src/w32font.c,
src/w32inevt.c, src/w32proc.c, src/w32select.c, src/w32term.c,
src/w32uniscribe.c, src/widget.c, src/window.c, src/xdisp.c,
src/xfaces.c, src/xfns.c, src/xfont.c, src/xftfont.c, src/xmenu.c,
src/xrdb.c, src/xselect.c, src/xterm.c, src/xwidget.c: Rename
INTEGERP->FIXNUM, make_number->make_fixnum, CHECK_NUMBER->CHECK_FIXNUM,
make_natnum->make_fixed_natum, NUMBERP->FIXED_OR_FLOATP,
NATNUMP->FIXNATP, CHECK_NATNUM->CHECK_FIXNAT.
Diffstat (limited to 'src/disptab.h')
| -rw-r--r-- | src/disptab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/disptab.h b/src/disptab.h index a86a9130aca..3911efcf4f6 100644 --- a/src/disptab.h +++ b/src/disptab.h | |||
| @@ -72,7 +72,7 @@ extern struct Lisp_Char_Table *buffer_display_table (void); | |||
| 72 | /* Given BASE and LEN returned by the two previous macros, | 72 | /* Given BASE and LEN returned by the two previous macros, |
| 73 | return nonzero if GLYPH code G is aliased to a different code. */ | 73 | return nonzero if GLYPH code G is aliased to a different code. */ |
| 74 | #define GLYPH_ALIAS_P(base,len,g) \ | 74 | #define GLYPH_ALIAS_P(base,len,g) \ |
| 75 | (GLYPH_FACE (g) == DEFAULT_FACE_ID && GLYPH_CHAR (g) < (len) && INTEGERP (base[GLYPH_CHAR (g)])) | 75 | (GLYPH_FACE (g) == DEFAULT_FACE_ID && GLYPH_CHAR (g) < (len) && FIXNUMP (base[GLYPH_CHAR (g)])) |
| 76 | 76 | ||
| 77 | /* Follow all aliases for G in the glyph table given by (BASE, | 77 | /* Follow all aliases for G in the glyph table given by (BASE, |
| 78 | LENGTH), and set G to the final glyph. */ | 78 | LENGTH), and set G to the final glyph. */ |