]> granicus.if.org Git - vim/commitdiff
updated for version 7.0036
authorBram Moolenaar <Bram@vim.org>
Sun, 9 Jan 2005 21:20:18 +0000 (21:20 +0000)
committerBram Moolenaar <Bram@vim.org>
Sun, 9 Jan 2005 21:20:18 +0000 (21:20 +0000)
runtime/doc/eval.txt
src/proto/gui_gtk.pro
src/proto/gui_motif.pro
src/version.h
src/vim.rc

index 73b50fc766cd4191ccce146543744a92e63b0b36..3f6889e983b4963f88b81bef318af89f4810eae0 100644 (file)
@@ -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
index afe38dc2b4bb2a92ea9e67e1dcebb85fe11b1450..882587e55a562bacb898afceeb713efc7e24d4a1 100644 (file)
@@ -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));
index ab5226c9e06c3106b32d311bb67975a55cba9f9e..94a7c4519c98875826a7f8e92800aaaa8630cbdf 100644 (file)
@@ -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));
index e9dfeb9fe8df1189f8dc62e6ad6589b42a6a4a77..a1852310eaff7f8d8962b1cd1f9310553d34565e 100644 (file)
@@ -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 "
index 4ceb638242edf3a262805e9a78d71566e7c31f51..e50a9c45bb2ec721706eae80d95408feea12040d 100644 (file)
@@ -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"