The R Project SVN R

Rev

Rev 86821 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 86821 Rev 86871
Line 1... Line 1...
1
/*
1
/*
2
 *  R : A Computer Language for Statistical Data Analysis
2
 *  R : A Computer Language for Statistical Data Analysis
3
 *  file rt_complete.c
3
 *  file rt_complete.c
4
 *  Copyright (C) 2007-2022 The R Core Team.
4
 *  Copyright (C) 2007-2024 The R Core Team.
5
 *
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; either version 2 of the License, or
8
 *  the Free Software Foundation; either version 2 of the License, or
9
 *  (at your option) any later version.
9
 *  (at your option) any later version.
Line 32... Line 32...
32
# define min(a, b) (a < b ? a : b)
32
# define min(a, b) (a < b ? a : b)
33
#endif
33
#endif
34
 
34
 
35
#include <Rinternals.h>
35
#include <Rinternals.h>
36
#include <R_ext/Parse.h>
36
#include <R_ext/Parse.h>
-
 
37
#include <Defn.h>
37
 
38
 
38
static int completion_available = -1;
39
static int completion_available = -1;
39
 
40
 
40
static int gl_tab(char *buf, int offset, int *loc)
41
static int gl_tab(char *buf, int offset, int *loc)
41
/* default tab handler, acts like tabstops every 8 cols */
42
/* default tab handler, acts like tabstops every 8 cols */