Deleted Added
full compact
tty.c (8870) tty.c (26926)
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Christos Zoulas of Cornell University.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

42 * tty.c: tty interface stuff
43 */
44#include "sys.h"
45#include "tty.h"
46#include "el.h"
47
48typedef struct ttymodes_t {
49 char *m_name;
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Christos Zoulas of Cornell University.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

42 * tty.c: tty interface stuff
43 */
44#include "sys.h"
45#include "tty.h"
46#include "el.h"
47
48typedef struct ttymodes_t {
49 char *m_name;
50 int m_value;
50 u_int m_value;
51 int m_type;
52} ttymodes_t;
53
54typedef struct ttymap_t {
55 int nch, och; /* Internal and termio rep of chars */
56 el_action_t bind[3]; /* emacs, vi, and vi-cmd */
57} ttymap_t;
58

--- 1086 unchanged lines hidden ---
51 int m_type;
52} ttymodes_t;
53
54typedef struct ttymap_t {
55 int nch, och; /* Internal and termio rep of chars */
56 el_action_t bind[3]; /* emacs, vi, and vi-cmd */
57} ttymap_t;
58

--- 1086 unchanged lines hidden ---