aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/cmdedit.c9
-rw-r--r--shell/lash.c4
2 files changed, 8 insertions, 5 deletions
diff --git a/shell/cmdedit.c b/shell/cmdedit.c
index 722a36a50..12c78dc76 100644
--- a/shell/cmdedit.c
+++ b/shell/cmdedit.c
@@ -44,10 +44,13 @@
44#include <signal.h> 44#include <signal.h>
45 45
46 46
47#define MAX_HISTORY 15 /* Maximum length of the linked list for the command line history */ 47static const int MAX_HISTORY = 15; /* Maximum length of the linked list for the command line history */
48
49enum {
50 ESC = 27,
51 DEL = 127,
52};
48 53
49#define ESC 27
50#define DEL 127
51#define member(c, s) ((c) ? ((char *)strchr ((s), (c)) != (char *)NULL) : 0) 54#define member(c, s) ((c) ? ((char *)strchr ((s), (c)) != (char *)NULL) : 0)
52#define whitespace(c) (((c) == ' ') || ((c) == '\t')) 55#define whitespace(c) (((c) == ' ') || ((c) == '\t'))
53 56
diff --git a/shell/lash.c b/shell/lash.c
index 52c87ee7f..b9685ab31 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -64,8 +64,8 @@
64#include <getopt.h> 64#include <getopt.h>
65#include "cmdedit.h" 65#include "cmdedit.h"
66 66
67#define MAX_LINE 256 /* size of input buffer for cwd data */ 67static const int MAX_LINE = 256; /* size of input buffer for cwd data */
68#define MAX_READ 128 /* size of input buffer for `read' builtin */ 68static const int MAX_READ = 128; /* size of input buffer for `read' builtin */
69#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n" 69#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
70extern size_t NUM_APPLETS; 70extern size_t NUM_APPLETS;
71 71