aboutsummaryrefslogtreecommitdiffstats
path: root/edit.h
diff options
context:
space:
mode:
authorGustav HÃ¥llberg <gustav@gmail.com>2009-01-16 23:48:31 (GMT)
committerGustav HÃ¥llberg <gustav@gmail.com>2009-01-16 23:55:40 (GMT)
commit2a5b0cabaa1b2aba86e466cdc25486fa4c86e6cd (patch)
treeabf7e9f06878f125535f7d6c37864f10949bf123 /edit.h
parentb56e2c86f181c9b1d117c7cbff194130f730cb6f (diff)
downloadpowwow-2a5b0cabaa1b2aba86e466cdc25486fa4c86e6cd.zip
powwow-2a5b0cabaa1b2aba86e466cdc25486fa4c86e6cd.tar.gz
powwow-2a5b0cabaa1b2aba86e466cdc25486fa4c86e6cd.tar.bz2
added #addstatic command
Replaced old WORD_RETAIN function with separate, static list of words.
Diffstat (limited to 'edit.h')
-rw-r--r--edit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/edit.h b/edit.h
index a81b97c..e49cea2 100644
--- a/edit.h
+++ b/edit.h
@@ -18,7 +18,6 @@ extern edit_function internal_functions[];
* words[wordindex].next is 2nd (first to search for completion)
*/
#define WORD_UNIQUE 1 /* word is unique in list */
-#define WORD_RETAIN 2 /* permanent (#command) */
typedef struct {
char *word;
int next, prev;
@@ -54,6 +53,7 @@ void put_history __P ((char *str));
void complete_word __P ((char *dummy));
void complete_line __P ((char *dummy));
void put_word __P ((char *s));
+void put_static_word __P ((char *s));
void set_custom_delimeters __P ((char *s));
void to_input_line __P ((char *str));
void clear_line __P ((char *dummy));