Deleted Added
full compact
keymaps.h (47558) keymaps.h (58310)
1/* keymaps.h -- Manipulation of readline keymaps. */
2
3/* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
4
5 This file is part of the GNU Readline Library, a library for
6 reading lines of text with interactive input and history editing.
7
8 The GNU Readline Library is free software; you can redistribute it
9 and/or modify it under the terms of the GNU General Public License
1/* keymaps.h -- Manipulation of readline keymaps. */
2
3/* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
4
5 This file is part of the GNU Readline Library, a library for
6 reading lines of text with interactive input and history editing.
7
8 The GNU Readline Library is free software; you can redistribute it
9 and/or modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 1, or
10 as published by the Free Software Foundation; either version 2, or
11 (at your option) any later version.
12
13 The GNU Readline Library is distributed in the hope that it will be
14 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
15 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 The GNU General Public License is often shipped with GNU software, and
19 is generally kept in a file called COPYING or LICENSE. If you do not
20 have a copy of the license, write to the Free Software Foundation,
11 (at your option) any later version.
12
13 The GNU Readline Library is distributed in the hope that it will be
14 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
15 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 The GNU General Public License is often shipped with GNU software, and
19 is generally kept in a file called COPYING or LICENSE. If you do not
20 have a copy of the license, write to the Free Software Foundation,
21 675 Mass Ave, Cambridge, MA 02139, USA. */
21 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
22
23#ifndef _KEYMAPS_H_
24#define _KEYMAPS_H_
25
22
23#ifndef _KEYMAPS_H_
24#define _KEYMAPS_H_
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
26#if defined (READLINE_LIBRARY)
27# include "rlstdc.h"
28# include "chardefs.h"
29#else
30# include <readline/rlstdc.h>
31# include <readline/chardefs.h>
32#endif
33

--- 58 unchanged lines hidden (view full) ---

92extern Keymap rl_get_keymap_by_name __P((char *));
93
94/* Return the current keymap. */
95extern Keymap rl_get_keymap __P((void));
96
97/* Set the current keymap to MAP. */
98extern void rl_set_keymap __P((Keymap));
99
30#if defined (READLINE_LIBRARY)
31# include "rlstdc.h"
32# include "chardefs.h"
33#else
34# include <readline/rlstdc.h>
35# include <readline/chardefs.h>
36#endif
37

--- 58 unchanged lines hidden (view full) ---

96extern Keymap rl_get_keymap_by_name __P((char *));
97
98/* Return the current keymap. */
99extern Keymap rl_get_keymap __P((void));
100
101/* Set the current keymap to MAP. */
102extern void rl_set_keymap __P((Keymap));
103
104#ifdef __cplusplus
105}
106#endif
107
100#endif /* _KEYMAPS_H_ */
108#endif /* _KEYMAPS_H_ */