Lines Matching defs:COMMAND
4 * command history
141 /* Substitute and execute command */
257 ret = command(editor ? editor : "${FCEDIT:-/bin/ed} $_");
332 ret = command(cmd);
418 /* the -1 is to avoid the current fc command */
429 /* Return a pointer to the newest command in the history */
443 /* Return a pointer to the newest command in the history */
612 * save command in history
623 if (++hp >= histlist + histsize) { /* remove oldest command */
638 * Append an entry to the last saved command. Used for multiline
702 int contin = 0; /* continuation of previous command */
779 * save command in history
799 if (++hp >= histlist + histsize) { /* remove oldest command */
825 * Each command is
826 * <command byte><command number(4 bytes)><bytes><null>
830 # define COMMAND 0xff
922 if (*base == COMMAND)
1010 * encoded after the COMMAND byte can itself contain the
1011 * COMMAND byte....
1013 for (; ep > base && *ep != COMMAND; ep--)
1041 if (*base == COMMAND)
1098 * write a command to the end of the history file
1128 if (*new != COMMAND) {
1148 hdr[0] = COMMAND;