aboutsummaryrefslogtreecommitdiffstats
path: root/src/scroll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/scroll.c')
-rw-r--r--src/scroll.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/scroll.c b/src/scroll.c
index c643730965d..6d4e0d062b9 100644
--- a/src/scroll.c
+++ b/src/scroll.c
@@ -21,6 +21,11 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
21 21
22#include <config.h> 22#include <config.h>
23 23
24/* The entire file is defined out under Android, where there is no
25 text terminal support of any kind. */
26
27#ifndef HAVE_ANDROID
28
24#include "lisp.h" 29#include "lisp.h"
25#include "termchar.h" 30#include "termchar.h"
26#include "dispextern.h" 31#include "dispextern.h"
@@ -984,3 +989,5 @@ do_line_insertion_deletion_costs (struct frame *frame,
984 FRAME_DELETE_COST (frame), FRAME_DELETEN_COST (frame), 989 FRAME_DELETE_COST (frame), FRAME_DELETEN_COST (frame),
985 coefficient); 990 coefficient);
986} 991}
992
993#endif