Home | History | Annotate | Download | only in ksh

Lines Matching refs:edchars

49 	edchars.erase = edchars.kill = edchars.intr = edchars.quit
50 = edchars.eof = -2;
52 edchars.werase = 027; /* ^W */
211 oldchars = edchars;
215 edchars.erase = cb.c_cc[VERASE];
216 edchars.kill = cb.c_cc[VKILL];
217 edchars.intr = cb.c_cc[VINTR];
218 edchars.quit = cb.c_cc[VQUIT];
219 edchars.eof = cb.c_cc[VEOF];
221 edchars.werase = cb.c_cc[VWERASE];
253 edchars.erase = cb.sgttyb.sg_erase;
254 edchars.kill = cb.sgttyb.sg_kill;
258 edchars.intr = cb.lchars.tc_intrc;
259 edchars.quit = cb.lchars.tc_quitc;
260 edchars.eof = cb.lchars.tc_eofc;
261 edchars.werase = cb.lchars.tc_werasc;
270 edchars.intr = cb.tchars.t_intrc;
271 edchars.quit = cb.tchars.t_quitc;
272 edchars.eof = cb.tchars.t_eofc;
276 edchars.werase = cb.ltchars.t_werasc;
288 if (edchars.erase == vdisable_c)
289 edchars.erase = -1;
290 if (edchars.kill == vdisable_c)
291 edchars.kill = -1;
292 if (edchars.intr == vdisable_c)
293 edchars.intr = -1;
294 if (edchars.quit == vdisable_c)
295 edchars.quit = -1;
296 if (edchars.eof == vdisable_c)
297 edchars.eof = -1;
298 if (edchars.werase == vdisable_c)
299 edchars.werase = -1;
300 if (memcmp(&edchars, &oldchars, sizeof(edchars)) != 0) {
302 x_emacs_keys(&edchars);