/ast/src/cmd/ie/ |
H A D | Makefile | 11 edit $(VERSION) :LIBRARY: editlib.c vi.c emacs.c history.c edit.c +ldll
|
H A D | edit.h | 22 * edit.h - common data structure for vi and emacs edit options 63 struct edit struct 82 int e_mode; /* edit mode */ 159 extern struct edit editb;
|
H A D | ie.sh | 119 set -A lib $root/@(bin|lib)/@(lib|)edit*([0-9]).@(dll|s[ol]*([0-9.]))
|
/ast/src/cmd/mailx/ |
H A D | edit.c | 157 char* edit; local 164 if (!(ep = fileopen(state.tmp.edit, "EMw"))) 173 if (filecopy(NiL, fp, state.tmp.edit, ep, NiL, size, NiL, NiL, 0)) 182 edit = type == 'e' ? state.var.editor : state.var.visual; 183 err = run_command(edit, 0, -1, -1, state.tmp.edit, NiL, NiL) < 0; 189 if (stat(state.tmp.edit, &state.openstat) < 0) 194 note(0, "%s did not exit normally but did do some changes -- you may want to re-edit", edit); 198 if (!(ep = fileopen(state.tmp.edit, "E [all...] |
H A D | Makefile | 7 data.c cmd1.c cmd2.c cmd3.c collect.c edit.c \
|
H A D | collect.c | 174 * On return, make the edit file the new temp file. 203 if (!(nf = fileopen(state.tmp.edit, "Ew+"))) 205 remove(state.tmp.edit); 756 if (fp = fileopen(state.tmp.edit, "EMw+")) { 781 remove(state.tmp.edit);
|
H A D | quit.c | 95 filetemp(state.tmp.edit, sizeof(state.tmp.edit), 'E', 0); 348 if (state.edit) {
|
H A D | send.c | 416 if (!(fp = fileopen(state.tmp.edit, "Ew+"))) { 420 remove(state.tmp.edit); 421 filecopy(NiL, lp->fp, state.tmp.edit, fp, NiL, (off_t)0, NiL, NiL, GNL);
|
H A D | lex.c | 182 state.edit = isedit; 193 if (!state.edit && !state.msg.count) {
|
/ast/src/lib/libdss/ |
H A D | cxmap.c | 171 register Cxedit_t* edit; local 217 for (edit = part->num2str; edit; edit = edit->next) 218 if (!edit->num2strf) 222 if (!regexec(&edit->re, buf, elementsof(match), match, 0) && !regsubexec(&edit->re, buf, elementsof(match), match)) 224 sfprintf(sp, "%c%s", del, edit->re.re_sub->re_buf); 229 else if (s = (*edit 274 register Cxedit_t* edit; local 337 cxsub(Cx_t* cx, Cxedit_t* edit, Cxoperand_t* r) argument [all...] |
H A D | dssprintf.c | 36 Cxedit_t* edit; member in struct:Arg_s 148 if (ap->edit) 149 cxsub(fp->cx, ap->edit, &ret); 466 if (strneq(v, "edit=", 5)) 470 if (ap->edit = cxedit(cx, v + 5, dss->disc)) 472 d = v + 5 + ap->edit->re.re_npat; 577 if (ap->variable && !ap->edit && cxisstring(ap->variable->type) && ap->variable->format.map && ap->variable->format.map->part && ap->variable->format.map->part->edit) 578 ap->edit = ap->variable->format.map->part->edit; [all...] |
H A D | dsstags.c | 364 Cxedit_t* edit; local 366 if (!(edit = cxedit(NiL, data, state->disc))) 370 edit->next = part->num2str; 371 part->num2str = edit; 375 edit->next = part->str2num; 376 part->str2num = edit; 380 edit->next = part->edit; 381 part->edit = edit; [all...] |
H A D | cxopen.c | 921 Cxedit_t* edit; local 923 if (!(edit = cxedit(cx, arg[0].value.string.data, disc))) 926 return cxsub(cx, edit, ret); 945 CXF("edit", "string", cx_edit_B, "string,string", 1752 * add an edit 1756 cxaddedit(Cx_t* cx, register Cxedit_t* edit, Cxdisc_t* disc) argument 1784 *copy = *edit; 1785 edit = copy; 1789 if (dtsearch(dict, edit)) 1792 (*disc->errorf)(NiL, disc, 2, "%s: edit alread [all...] |
/ast/src/cmd/ksh93/bltins/ |
H A D | hist.c | 31 # include "edit.h" 51 char *edit = 0; /* name of editor */ local 65 edit = opt_info.arg; 77 edit = "-"; 171 range[1] = ((lflag && !edit)?hist_max(hp)-1:range[0]); 177 if(edit && *edit=='-' && range[0]!=range[1]) 216 arg = edit;
|
/ast/src/cmd/at/ |
H A D | crontab.sh | 47 omitted, or by using an editor, if \b--edit\b is specified. The 73 [e:edit?Edit a copy of the calling user crontab entry, or create an empty 74 entry to edit if the crontab entry does not exist. When editing is 135 e) op=edit ;; 169 edit) trap "rm -f '$temp'" 0 1 2 3 15
|
/ast/src/cmd/nmake/ |
H A D | read.c | 52 edit(tmp, s, KEEP, KEEP, external.object); 54 edit(tmp, s, DELETE, KEEP, DELETE); 107 edit(fp, r->name, DELETE, KEEP, KEEP); 142 edit(fp, r->name, DELETE, KEEP, external.object); 163 edit(internal.tmp, state.rules, DELETE, KEEP, DELETE); 164 edit(internal.wrk, b = getval(external.rules, VAL_PRIMARY), DELETE, KEEP, DELETE);
|
H A D | expand.c | 191 * edit operator syntax: 200 * edit operator forms: 283 * return edit map for *p delimited by space or del 2190 * edit a single (expanded) file name s into xp 2200 edit(Sfio_t* xp, register char* s, char* dir, char* bas, char* suf) function 2324 * NOTE: this and :D:B:S: were the first edit operators 3309 * generate edit context in xp at cur from beg 3359 * apply edit operators ed on value v into xp 3464 error(2, "edit +++ %-.32s", ed); 3522 error(1, "%s: --%s: unknown edit operato [all...] |
H A D | Makefile | 52 edit immediate implicit internal interrupt metarule option panic \
|
H A D | state.c | 85 edit(sp, state.makefile, dir, KEEP, external.state); 133 edit(tmp, statefile(), state.view[view].path, KEEP, KEEP); 564 edit(internal.nam, statefile(), KEEP, KEEP, external.lock); 572 edit(internal.nam, file, state.view[fd].path, KEEP, KEEP); 947 edit(internal.nam, r->name, KEEP, DELETE, DELETE);
|
/ast/src/lib/libpp/ |
H A D | ppcontrol.c | 36 struct edit struct 38 struct edit* next; 46 struct edit* edit; member in struct:map 262 struct edit* edit; local 550 for (edit = map->edit; edit; edit [all...] |
/ast/src/cmd/INIT/ |
H A D | CONVERT.mk | 77 * edit script 108 file : .VIRTUAL edit 109 edit : .VIRTUAL copy 218 edit : $(F)
|
/ast/src/cmd/ksh93/ |
H A D | Makefile | 33 SHOPT_ESH == 1 /* emacs/gmacs edit mode */ 55 SHOPT_VSH == 1 /* vi edit mode */ 86 .SOURCE : edit sh bltins data tests fun 165 arith.c args.c array.c completion.c defs.c edit.c expand.c regress.c \
|
/ast/src/cmd/ksh93/include/ |
H A D | edit.h | 23 * edit.h - common data structure for vi and emacs edit options 63 #define MAXLINE 1024 /* longest edit line permitted */ 84 typedef struct edit struct 108 int e_mode; /* edit mode */
|
/ast/src/lib/libtksh/ |
H A D | Makefile | 80 desksh/lib/imgs/edit.gif \
|
/ast/src/lib/libtk/library/demos/ |
H A D | text.tcl | 28 and allows you to edit the text. Here is a summary of the things you
|