]> granicus.if.org Git - vim/commitdiff
updated for version 7.1
authorBram Moolenaar <Bram@vim.org>
Sat, 12 May 2007 15:32:12 +0000 (15:32 +0000)
committerBram Moolenaar <Bram@vim.org>
Sat, 12 May 2007 15:32:12 +0000 (15:32 +0000)
Contents
runtime/doc/howto.txt
runtime/doc/quickfix.txt
src/if_mzsch.c

index 2a59238862c722e0e2771b7494411533f4940ffc..2a5de8821d44788851fb1ac387e29b8724b80159 100644 (file)
--- a/Contents
+++ b/Contents
@@ -9,10 +9,10 @@ Vim           Vi IMproved.  A clone of the UNIX text editor Vi.  Very useful
                messages, shows current file name in window title, on-line
                help, rectangular cut/paste, etc., etc., etc...
 
-               Version 7.1b.  Also runs under UNIX, MSDOS and other systems.
-               vim71brt.tgz  contains the documentation and syntax files.
-               vim71bbin.tgz contains the binaries.
-               vim71bsrc.tgz contains the sources.
+               Version 7.1.  Also runs under UNIX, MSDOS and other systems.
+               vim71rt.tgz  contains the documentation and syntax files.
+               vim71bin.tgz contains the binaries.
+               vim71src.tgz contains the sources.
                Author: Bram Moolenaar et al.
 
 
index 1a8833b7590643bc89d946d68d9d84467d282c1a..cb76fb42cafa6b72dfc3a6adaede25b08fb747ec 100644 (file)
@@ -1,4 +1,4 @@
-*howto.txt*    For Vim version 7.1b.  Last change: 2006 Apr 02
+*howto.txt*    For Vim version 7.1.  Last change: 2006 Apr 02
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
index 942823d5f37dc4b725eea744b58b0f023239f17d..a40cb9e49e87fc1c353baaa150ac2b7742a1e834 100644 (file)
@@ -1,4 +1,4 @@
-*quickfix.txt*  For Vim version 7.1b.  Last change: 2007 May 10
+*quickfix.txt*  For Vim version 7.1.  Last change: 2007 May 10
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
index a175b6e445439db6102c684e6d7debe2adda1a2c..1f13e833f4ee49bdeb6af531c068a6d6ab641c7f 100644 (file)
@@ -22,6 +22,7 @@
  */
 
 #include "vim.h"
+
 #include "if_mzsch.h"
 
 /* Only do the following when the feature is enabled.  Needed for "make
@@ -219,7 +220,11 @@ static Scheme_Object *(*dll_scheme_byte_string_to_char_string)(Scheme_Object *s)
 # endif
 static void (*dll_scheme_close_input_port)(Scheme_Object *port);
 static void (*dll_scheme_count_lines)(Scheme_Object *port);
+#if MZSCHEME_VERSION_MAJOR < 360
 static Scheme_Object *(*dll_scheme_current_continuation_marks)(void);
+#else
+static Scheme_Object *(*dll_scheme_current_continuation_marks)(Scheme_Object *prompt_tag);
+#endif
 static void (*dll_scheme_display)(Scheme_Object *obj, Scheme_Object *port);
 static char *(*dll_scheme_display_to_string)(Scheme_Object *obj, long *len);
 static int (*dll_scheme_eq)(Scheme_Object *obj1, Scheme_Object *obj2);
@@ -2441,8 +2446,11 @@ raise_vim_exn(const char *add_info)
     else
        argv[0] = scheme_make_string(_("Vim error"));
 
-    /* TODO: proper argument */
+#if MZSCHEME_VERSION_MAJOR < 360
+    argv[1] = scheme_current_continuation_marks();
+#else
     argv[1] = scheme_current_continuation_marks(NULL);
+#endif
 
     scheme_raise(scheme_make_struct_instance(vim_exn, 2, argv));
 }