diff options
| author | Glenn Morris | 2020-04-16 09:05:52 -0700 |
|---|---|---|
| committer | Glenn Morris | 2020-04-16 09:05:52 -0700 |
| commit | cead6f0ad18206401b5180fd44f848a76fed8e43 (patch) | |
| tree | fba301b0895e6d907dcaa44e35315688ba92fa6f /src | |
| parent | b5e9beda8d80345ec4c2d2ecec9c03cc31c1eb29 (diff) | |
| download | emacs-cead6f0ad18206401b5180fd44f848a76fed8e43.tar.gz emacs-cead6f0ad18206401b5180fd44f848a76fed8e43.zip | |
* src/indent.c (Fvertical_motion): Fix int/Lisp_Object mix up.
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c index 2d07791606d..dd81b983d48 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -2103,7 +2103,7 @@ whether or not it is currently displayed in some window. */) | |||
| 2103 | lines = XCDR (lines); | 2103 | lines = XCDR (lines); |
| 2104 | } | 2104 | } |
| 2105 | else | 2105 | else |
| 2106 | lcols = 0; /* shut up stupid GCC warning */ | 2106 | lcols = make_fixnum (0); /* shut up stupid GCC warning */ |
| 2107 | 2107 | ||
| 2108 | CHECK_FIXNUM (lines); | 2108 | CHECK_FIXNUM (lines); |
| 2109 | w = decode_live_window (window); | 2109 | w = decode_live_window (window); |