aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorantirez <antirez>2005-04-05 11:51:17 +0000
committerantirez <antirez>2005-04-05 11:51:17 +0000
commit0b5ec7f323c8eb15c7b2055616c7b7af1e5afd3d (patch)
tree9353a8d64b2a6c1c9b560d0feae191435de66c68 /jim.h
parenta96abb6e891079e1e2dadcebee354fc72ed7d9bf (diff)
downloadjimtcl-0b5ec7f323c8eb15c7b2055616c7b7af1e5afd3d.zip
jimtcl-0b5ec7f323c8eb15c7b2055616c7b7af1e5afd3d.tar.gz
jimtcl-0b5ec7f323c8eb15c7b2055616c7b7af1e5afd3d.tar.bz2
.jimrc support (or jimrc.tcl). Minimal readline extension, just enough
to allow to the pure-Jim rlprompt extension to provide a readline-aware interactive shell with history.
Diffstat (limited to 'jim.h')
-rw-r--r--jim.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/jim.h b/jim.h
index d548689..771cd37 100644
--- a/jim.h
+++ b/jim.h
@@ -2,7 +2,7 @@
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
* Copyright 2005 Clemens Hintze <c.hintze@gmx.net>
*
- * $Id: jim.h,v 1.67 2005/04/04 08:01:28 antirez Exp $
+ * $Id: jim.h,v 1.68 2005/04/05 11:51:18 antirez Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -135,6 +135,9 @@ extern "C" {
#define JIM_CASESENS 0 /* case sensitive */
#define JIM_NOCASE 1 /* no case */
+/* Filesystem related */
+#define JIM_PATH_LEN 1024
+
/* -----------------------------------------------------------------------------
* Hash table
* ---------------------------------------------------------------------------*/