]> granicus.if.org Git - vim/commitdiff
Changes for VMS. Mostly by Zoltan Arpadffy.
authorBram Moolenaar <Bram@vim.org>
Wed, 28 Jul 2010 17:38:16 +0000 (19:38 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 28 Jul 2010 17:38:16 +0000 (19:38 +0200)
runtime/doc/os_vms.txt
runtime/doc/todo.txt
src/Make_vms.mms
src/edit.c
src/normal.c
src/os_vms_conf.h
src/proto/screen.pro
src/screen.c
src/ui.c

index 6edfbe86ffb460ae1632d4a8eab0cd331c21f3f9..320dddaa6bf66cc784852c4b7777148d44a281c4 100644 (file)
@@ -1,4 +1,4 @@
-*os_vms.txt*    For Vim version 7.3c.  Last change: 2009 Oct 28
+*os_vms.txt*    For Vim version 7.3c.  Last change: 2010 Jul 28
 
 
                  VIM REFERENCE MANUAL
@@ -766,16 +766,20 @@ GNU_TOOLS.ZIP package downloadable from http://www.polarhome.com/vim/
 
 9. VMS related changes                                 *vms-changes*
 
-Recent changes
-- The following plugins are included into VMS runtime: 
-  genutils 2.4, multiselect 2.2, multvals 3.1, selectbuf 4.3,
-  bufexplorer 7.1.7, taglist 4.5
-- minor changes in vimrc (just in VMS runtime) 
+Version 7.3
+- CTAGS 5.8 included
+- VMS compile warnings fixed - floating-point overflow warning corrected on VAX
+- filepath completition corrected - too many chars were escaped in filename
+  and shell commands
+- the following plugins are included into VMS runtime:
+       genutils 2.4, multiselect 2.2, multvals 3.1, selectbuf 4.3,
+       bufexplorer 7.1.7, taglist 4.5
+- minor changes in vimrc (just in VMS runtime)
 - make_vms.mms - HUGE model is the default
 - [TESTDIR]make_vms.mms include as many tests possible
 - modify test30 and test54 for VMS
 - enable FLOAT feature in VMS port
-- os_vms.txt updated  
+- os_vms.txt updated
 
 Version 7.2 (2008 Aug 9)
 - VCF files write corrected
index d539cb0fe2e9c7bafcca168e89257add407cab58..469fc4317a1ec8d284527e23d476e09c32eb4d77 100644 (file)
@@ -30,15 +30,6 @@ be worked on, but only if you sponsor Vim development.  See |sponsor|.
                                                        *known-bugs*
 -------------------- Known bugs and current work -----------------------
 
-Conceal problem: CTRL-L draws differently than individual line. (Benjamin
-Fritz, 2010 Jul 27)
-
-Access to free memory with :redir command. (Dominique Pelle, 2010 Jul 25)
-Easier way to reproduce in later message. (2010 Jul 26)
-call get_lval() again in var_redir_stop().
-
-Patch for VMS. Zoltan Arpadffy, 2010 Jul 26.
-
 Patch for :find completion. (Nazri Ramliy, 2010 Jul 27, and leak fix)
 And patch for Windows, Jul 28.
 And fix for patch, Jul 28.
index 0519d7b6f92cd9b8ec8d20978851bf7ee41a0683..fce6ab60b296cadea8bcf0f7e2bcc0e9f043beb2 100644 (file)
@@ -2,7 +2,7 @@
 # Makefile for Vim on OpenVMS
 #
 # Maintainer:   Zoltan Arpadffy <arpadffy@polarhome.com>
-# Last change:  2008 Aug 16
+# Last change:  2010 Jul 28
 #
 # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
 # with MMS and MMK
@@ -295,21 +295,21 @@ ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYT
 ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
           $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(SNIFF_LIB) $(RUBY_LIB)
 
-SRC =  buffer.c charset.c diff.c digraph.c edit.c eval.c ex_cmds.c ex_cmds2.c \
+SRC =  blowfish.c buffer.c charset.c diff.c digraph.c edit.c eval.c ex_cmds.c ex_cmds2.c \
        ex_docmd.c ex_eval.c ex_getln.c if_xcmdsrv.c fileio.c fold.c getchar.c \
        hardcopy.c hashtab.c main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \
-       misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c \
+       misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c sha256.c\
        spell.c syntax.c tag.c term.c termlib.c ui.c undo.c version.c screen.c \
        window.c os_unix.c os_vms.c pathdef.c \
        $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) $(SNIFF_SRC) \
        $(RUBY_SRC) $(HANGULIN_SRC)
 
-OBJ =  buffer.obj charset.obj diff.obj digraph.obj edit.obj eval.obj \
+OBJ =  blowfish.obj buffer.obj charset.obj diff.obj digraph.obj edit.obj eval.obj \
        ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj \
        if_xcmdsrv.obj fileio.obj fold.obj getchar.obj hardcopy.obj hashtab.obj main.obj mark.obj \
        menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
        move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj quickfix.obj \
-       regexp.obj search.obj spell.obj syntax.obj tag.obj term.obj termlib.obj \
+       regexp.obj search.obj sha256.obj spell.obj syntax.obj tag.obj term.obj termlib.obj \
        ui.obj undo.obj screen.obj version.obj window.obj os_unix.obj \
        os_vms.obj pathdef.obj \
        $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) $(SNIFF_OBJ) \
index 4754fd9bde8cf3c543fdcd703f5d80ba4eefe87e..ed5b79859f06412df6da60d8e17eb34fdd46dd63 100644 (file)
@@ -380,7 +380,7 @@ edit(cmdchar, startln, count)
 #ifdef FEAT_CONCEAL
     /* Check if the cursor line needs redrawing before changing State.  If
      * 'concealcursor' is "n" it needs to be redrawn without concealing. */
-    conceal_check_cursur_line_redraw();
+    conceal_check_cursur_line();
 #endif
 
 #ifdef FEAT_MOUSE
index 9e75afc9eb59e4871426a1975f9c0967f9625a8a..e17aec3154b0dbe4db4a3032aefd73cb727cc092 100644 (file)
@@ -7649,7 +7649,7 @@ n_start_visual_mode(c)
 {
 #ifdef FEAT_CONCEAL
     /* Check for redraw before changing the state. */
-    conceal_check_cursur_line_redraw();
+    conceal_check_cursur_line();
 #endif
 
     VIsual_mode = c;
@@ -7673,7 +7673,7 @@ n_start_visual_mode(c)
 #endif
 #ifdef FEAT_CONCEAL
     /* Check for redraw after changing the state. */
-    conceal_check_cursur_line_redraw();
+    conceal_check_cursur_line();
 #endif
 
     if (p_smd && msg_silent == 0)
index d70ab6137cd95602fb3b1b1f30050dfed2a30074..ade1ea3a490e5b0867b32a431f885abe6f954f34 100644 (file)
@@ -50,6 +50,9 @@
 /* Define to `int' if <sys/types.h> doesn't define.  */
 /* #undef uid_t */
 
+/* Define to `unsigned int' or other type that is 32 bit.  */
+#define UINT32_T unsigned int
+
 /* Define to `int' if <sys/types.h> doesn't define.  */
 /* #undef gid_t */
 
index efaf4c6d0e91aa3a178ec15cf9c420faf3943b01..be791e0c45324ecd9669f9b3f21106d06c9c0e11 100644 (file)
@@ -9,7 +9,7 @@ void redrawWinline __ARGS((linenr_T lnum, int invalid));
 void update_curbuf __ARGS((int type));
 void update_screen __ARGS((int type));
 int conceal_cursor_line __ARGS((win_T *wp));
-void conceal_check_cursur_line_redraw __ARGS((void));
+void conceal_check_cursur_line __ARGS((void));
 void update_single_line __ARGS((win_T *wp, linenr_T lnum));
 void update_debug_sign __ARGS((buf_T *buf, linenr_T lnum));
 void updateWindow __ARGS((win_T *wp));
index ca5827fe32bf0d8fff30803e1e000564cbe8b6d1..a53a9419ffe636c320c1c650dec57f2b0dbef156 100644 (file)
@@ -616,7 +616,7 @@ conceal_cursor_line(wp)
  * Check if the cursor line needs to be redrawn because of 'concealcursor'.
  */
     void
-conceal_check_cursur_line_redraw()
+conceal_check_cursur_line()
 {
     if (curwin->w_p_cole > 0 && conceal_cursor_line(curwin))
     {
index 1337807b6485339bb33b7f03ed28840265095397..fbdc325355b6937e1b8adec88d411612cda0c3d0 100644 (file)
--- a/src/ui.c
+++ b/src/ui.c
@@ -1914,7 +1914,7 @@ ui_cursor_shape()
 # endif
 
 # ifdef FEAT_CONCEAL
-    conceal_check_cursur_line_redraw();
+    conceal_check_cursur_line();
 # endif
 }
 #endif