summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2005-01-09 21:20:18 +0000
committervimboss <devnull@localhost>2005-01-09 21:20:18 +0000
commit53405ba88f63912cd0f3acbd9a9da34d9a504900 (patch)
tree66b7f174828dafd43f46a433beb46152daa85efd
parente107ace3a2d273afa9122b0025bde22d121f8af4 (diff)
downloadvim-53405ba88f63912cd0f3acbd9a9da34d9a504900.tar.gz
updated for version 7.0036
-rw-r--r--runtime/doc/eval.txt10
-rw-r--r--src/proto/gui_gtk.pro1
-rw-r--r--src/proto/gui_motif.pro1
-rw-r--r--src/version.h4
-rw-r--r--src/vim.rc2
5 files changed, 9 insertions, 9 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 73b50fc7..3f6889e9 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt* For Vim version 7.0aa. Last change: 2005 Jan 08
+*eval.txt* For Vim version 7.0aa. Last change: 2005 Jan 09
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -167,9 +167,9 @@ separated by a colon in square brackets: >
Omitting the first index is similar to zero. Omitting the last index is
similar to -1. The difference is that there is no error if the items are not
available. >
- :let endlist = [2:] " from item 2 to the end: [3, "four"]
- :let shortlist = [2:2] " List with one item: [3]
- :let otherlist = [:] " make a copy of the List
+ :let endlist = mylist[2:] " from item 2 to the end: [3, "four"]
+ :let shortlist = mylist[2:2] " List with one item: [3]
+ :let otherlist = mylist[:] " make a copy of the List
List identity ~
@@ -236,7 +236,7 @@ To change a specific item of a list use |:let| this way: >
:let listlist[0][3] = item
To change part of a list you can specify the first and last item to be
-modified. The value must mach the range of replaced items: >
+modified. The value must match the range of replaced items: >
:let list[3:5] = [3, 4, 5]
Adding and removing items from a list is done with functions. Here are a few
diff --git a/src/proto/gui_gtk.pro b/src/proto/gui_gtk.pro
index afe38dc2..882587e5 100644
--- a/src/proto/gui_gtk.pro
+++ b/src/proto/gui_gtk.pro
@@ -14,6 +14,7 @@ void gui_mch_destroy_scrollbar __ARGS((scrollbar_T *sb));
char_u *gui_mch_browse __ARGS((int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter));
char_u *gui_mch_browsedir __ARGS((char_u *title, char_u *initdir));
int gui_mch_dialog __ARGS((int type, char_u *title, char_u *message, char_u *buttons, int def_but, char_u *textfield));
+int gui_mch_dialog __ARGS((int type, char_u *title, char_u *message, char_u *buttons, int def_but, char_u *textfield));
void gui_mch_show_popupmenu __ARGS((vimmenu_T *menu));
void gui_make_popup __ARGS((char_u *path_name));
void gui_mch_find_dialog __ARGS((exarg_T *eap));
diff --git a/src/proto/gui_motif.pro b/src/proto/gui_motif.pro
index ab5226c9..94a7c451 100644
--- a/src/proto/gui_motif.pro
+++ b/src/proto/gui_motif.pro
@@ -34,7 +34,6 @@ void gui_mch_enable_footer __ARGS((int showit));
void gui_mch_set_footer __ARGS((char_u *s));
void gui_mch_show_toolbar __ARGS((int showit));
int gui_mch_compute_toolbar_height __ARGS((void));
-void gui_mch_get_toolbar_colors __ARGS((Pixel *bgp, Pixel *fgp, Pixel *bsp, Pixel *tsp, Pixel *hsp));
void gui_motif_menu_fontlist __ARGS((Widget id));
void gui_mch_find_dialog __ARGS((exarg_T *eap));
void gui_mch_replace_dialog __ARGS((exarg_T *eap));
diff --git a/src/version.h b/src/version.h
index e9dfeb9f..a1852310 100644
--- a/src/version.h
+++ b/src/version.h
@@ -36,5 +36,5 @@
#define VIM_VERSION_NODOT "vim70aa"
#define VIM_VERSION_SHORT "7.0aa"
#define VIM_VERSION_MEDIUM "7.0aa ALPHA"
-#define VIM_VERSION_LONG "VIM - Vi IMproved 7.0aa ALPHA (2004 Jan 8)"
-#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.0aa ALPHA (2004 Jan 8, compiled "
+#define VIM_VERSION_LONG "VIM - Vi IMproved 7.0aa ALPHA (2004 Jan 9)"
+#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.0aa ALPHA (2004 Jan 9, compiled "
diff --git a/src/vim.rc b/src/vim.rc
index 4ceb6382..e50a9c45 100644
--- a/src/vim.rc
+++ b/src/vim.rc
@@ -91,7 +91,7 @@ BEGIN
VALUE "FileDescription", "Vi Improved - A Text Editor\0"
VALUE "FileVersion", VIM_VERSION_MAJOR_STR ", " VIM_VERSION_MINOR_STR ", " VIM_VERSION_BUILD_STR ", " VIM_VERSION_PATCHLEVEL_STR "\0"
VALUE "InternalName", "VIM\0"
- VALUE "LegalCopyright", "Copyright \251 1996-2003\0"
+ VALUE "LegalCopyright", "Copyright \251 1996-2005\0"
VALUE "LegalTrademarks", "Vim\0"
VALUE "OriginalFilename", "VIM.EXE\0"
VALUE "ProductName", "Vim\0"