Deleted Added
sdiff udiff text old ( 136758 ) new ( 165675 )
full compact
1/* $FreeBSD: head/contrib/libreadline/rlconf.h 136758 2004-10-21 20:02:02Z peter $ */
2
3/* rlconf.h -- readline configuration definitions */
4
5/* Copyright (C) 1994 Free Software Foundation, Inc.
6
7 This file contains the Readline Library (the Library), a set of
8 routines for providing Emacs style line input to programs that ask
9 for it.
10

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

34
35/* This definition is needed by readline.c, rltty.c, and signals.c. */
36/* If on, then readline handles signals in a way that doesn't screw. */
37#define HANDLE_SIGNALS
38
39/* Ugly but working hack for binding prefix meta. */
40#define PREFIX_META_HACK
41
42/* The final, last-ditch effort file name for an init file. */
43#define DEFAULT_INPUTRC "~/.inputrc"
44
45/* If defined, expand tabs to spaces. */
46#define DISPLAY_TABS
47
48/* If defined, use the terminal escape sequence to move the cursor forward
49 over a character when updating the line rather than rewriting it. */
50/* #define HACK_TERMCAP_MOTION */
51
52/* The string inserted by the `insert comment' command. */
53#define RL_COMMENT_BEGIN_DEFAULT "#"
54
55/* Define this if you want code that allows readline to be used in an
56 X `callback' style. */
57#define READLINE_CALLBACKS
58
59/* Define this if you want the cursor to indicate insert or overwrite mode. */
60/* #define CURSOR_MODE */
61
62#endif /* _RLCONF_H_ */