]> granicus.if.org Git - vim/commitdiff
patch 8.0.1550: various small problems in source files v8.0.1550
authorBram Moolenaar <Bram@vim.org>
Tue, 27 Feb 2018 16:27:13 +0000 (17:27 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 27 Feb 2018 16:27:13 +0000 (17:27 +0100)
Problem:    Various small problems in source files.
Solution:   Fix the problems.

17 files changed:
src/Makefile
src/README.txt
src/beval.c
src/dosinst.c
src/gui_gtk.c
src/if_py_both.h
src/if_python.c
src/if_xcmdsrv.c
src/iscygpty.c
src/json_test.c
src/libvterm/include/vterm_keycodes.h
src/mbyte.c
src/os_vms.c
src/pty.c
src/version.c
src/vimrun.c
uninstal.txt

index 5a134a6f45491e3d6f312de1ce4d79e555b5a6b7..1b13aa94cff1edf5212e0eb1b05d35c4984f2819 100644 (file)
@@ -651,12 +651,16 @@ LINT_OPTIONS = -beprxzF
 
 # PROFILING - Uncomment the next two lines to do profiling with gcc and gprof.
 # Might not work with GUI or Perl.
-# For unknown reasons adding "-lc" fixes a linking problem with some versions
-# of GCC.  That's probably a bug in the "-pg" implementation.
 # After running Vim see the profile result with: gprof vim gmon.out | vim -
 # Need to recompile everything after changing this: "make clean" "make".
 #PROFILE_CFLAGS = -pg -g -DWE_ARE_PROFILING
 #PROFILE_LIBS = -pg
+
+# GCC 5 and later need the -no-pie argument.
+#PROFILE_LIBS = -pg -no-pie
+
+# For unknown reasons adding "-lc" fixes a linking problem with some versions
+# of GCC.  That's probably a bug in the "-pg" implementation.
 #PROFILE_LIBS = -pg -lc
 
 
index 2fafd4f7c287332c1f4b6a81e68ca8806ffe3a07..e134306015fc4a9f00e967cbc5850eee9506ab4b 100644 (file)
@@ -8,8 +8,8 @@ You might also want to read ":help development".
 
 JUMPING AROUND
 
-First of all, use ":make tags" to generate a tags file, so that you can use
-the ":tag" command to jump around the source code.
+First of all, use ":make tags" to generate a tags file, so that you can jump
+around in the source code.
 
 To jump to a function or variable definition, move the cursor on the name and
 use the CTRL-] command.  Use CTRL-T or CTRL-O to jump back.
@@ -43,6 +43,21 @@ Most code can be found in a file with an obvious name (incomplete list):
        window.c        handling split windows
 
 
+DEBUGGING
+
+If you have a reasonable recent version of gdb, you can use the :Termdebug
+command to debug Vim.  See  ":help :Termdebug".
+
+When something is time critical or stepping through code is a hassle, use the
+channel logging to create a time-stamped log file.  Add lines to the code like
+this:
+       ch_log(NULL, "Value is now %02x", value);
+After compiling and starting Vim, do:
+       :call ch_logfile('debuglog', 'w')
+And edit "debuglog" to see what happens.  The channel functions already have
+ch_log() calls, thus you always see that in the log.
+
+
 IMPORTANT VARIABLES
 
 The current mode is stored in "State".  The values it can have are NORMAL,
index 981e5ea46ce777d0b78eae37d21686b87467fd6b..4ceddca19f657fdbd90018825f995a1600b59d3a 100644 (file)
@@ -137,7 +137,7 @@ get_beval_info(
  * Show a balloon with "mesg" or "list".
  */
     void
-post_balloon(BalloonEval *beval UNUSED, char_u *mesg, list_T *list)
+post_balloon(BalloonEval *beval UNUSED, char_u *mesg, list_T *list UNUSED)
 {
 # ifdef FEAT_BEVAL_TERM
 #  ifdef FEAT_GUI
index 94e866953602942de9182b2233b48e7af06cff46..6a12e3dc886f0daabc68c5e313587b21fa6c038b 100644 (file)
@@ -1200,8 +1200,8 @@ install_vimrc(int idx)
 
        /* If the path has a space:  When using cmd.exe (Win NT/2000/XP) put
         * quotes around the diff command and rely on the default value of
-         * shellxquote to solve the quoting problem for the whole command.
-         *
+        * shellxquote to solve the quoting problem for the whole command.
+        *
         * Otherwise put a double quote just before the space and at the
         * end of the command.  Putting quotes around the whole thing
         * doesn't work on Win 95/98/ME.  This is mostly guessed! */
index 7ae9cbfdb139741f620171e163933236202c197f..ed539e386c09ac0ee6513dc39ae9aeb1f0461c87 100644 (file)
@@ -1895,8 +1895,8 @@ gui_mch_show_popupmenu(vimmenu_T *menu)
        trigger.window     = gtk_widget_get_window(gui.drawarea);
        trigger.send_event = FALSE;
        trigger.time       = gui.event_time;
-       trigger.x          = 0.0;
-       trigger.y          = 0.0;
+       trigger.x          = 0.0;
+       trigger.y          = 0.0;
        trigger.axes       = NULL;
        trigger.state      = 0;
        trigger.button     = 3;
@@ -1983,8 +1983,8 @@ gui_make_popup(char_u *path_name, int mouse_pos)
        trigger.window     = win;
        trigger.send_event = FALSE;
        trigger.time       = GDK_CURRENT_TIME;
-       trigger.x          = 0.0;
-       trigger.y          = 0.0;
+       trigger.x          = 0.0;
+       trigger.y          = 0.0;
        trigger.axes       = NULL;
        trigger.state      = 0;
        trigger.button     = 0;
index 3380142d1e803d7eca7d4b077e64d04ccd1a84db..48137f1e37b2123facb70524b142ad894d988b13 100644 (file)
@@ -5996,7 +5996,7 @@ convert_dl(PyObject *obj, typval_T *tv,
     PyObject   *capsule;
     char       hexBuf[sizeof(void *) * 2 + 3];
 
-    sprintf(hexBuf, "%p", obj);
+    sprintf(hexBuf, "%p", (void *)obj);
 
 # ifdef PY_USE_CAPSULE
     capsule = PyDict_GetItemString(lookup_dict, hexBuf);
index ab9c854b27e8566e368b5ee18f4016e59e985c75..8ba124150169a9e28c4fd923333f2ac425667065 100644 (file)
@@ -74,7 +74,7 @@
 #undef HAVE_FCNTL_H /* Clash with os_win32.h */
 
 #define PyBytes_FromString      PyString_FromString
-#define PyBytes_Check           PyString_Check
+#define PyBytes_Check          PyString_Check
 #define PyBytes_AsStringAndSize PyString_AsStringAndSize
 
 #if !defined(FEAT_PYTHON) && defined(PROTO)
index 2d87e305011fe05dcb367dcf048cac006d06b0d6..af2e672cbc985c830552257280601eeb8dee8132 100644 (file)
@@ -1123,7 +1123,7 @@ GetRegProp(
  * This procedure is invoked by the various X event loops throughout Vims when
  * a property changes on the communication window.  This procedure reads the
  * property and enqueues command requests and responses. If immediate is true,
- * it runs the event immediatly instead of enqueuing it. Immediate can cause
+ * it runs the event immediately instead of enqueuing it. Immediate can cause
  * unintended behavior and should only be used for code that blocks for a
  * response.
  */
index 722f88f2f46dcbb8489fb2600893373c4d49009d..b018a1de62416a2edb5b10d2d758a44b1a404211 100644 (file)
 //#define USE_DYNFILEID
 #ifdef USE_DYNFILEID
 typedef BOOL (WINAPI *pfnGetFileInformationByHandleEx)(
-               HANDLE                    hFile,
-               FILE_INFO_BY_HANDLE_CLASS FileInformationClass,
-               LPVOID                    lpFileInformation,
-               DWORD                     dwBufferSize
-);
+               HANDLE                                          hFile,
+               FILE_INFO_BY_HANDLE_CLASS       FileInformationClass,
+               LPVOID                                          lpFileInformation,
+               DWORD                                           dwBufferSize);
 static pfnGetFileInformationByHandleEx pGetFileInformationByHandleEx = NULL;
 
 # ifndef USE_FILEEXTD
 static BOOL WINAPI stub_GetFileInformationByHandleEx(
-               HANDLE                    hFile,
-               FILE_INFO_BY_HANDLE_CLASS FileInformationClass,
-               LPVOID                    lpFileInformation,
-               DWORD                     dwBufferSize
-               )
+               HANDLE                                          hFile,
+               FILE_INFO_BY_HANDLE_CLASS       FileInformationClass,
+               LPVOID                                          lpFileInformation,
+               DWORD                                           dwBufferSize)
 {
        return FALSE;
 }
index c7779b29afbb811df3d0b13c58100c1c085fd56a..47bec8ee65f7053e21cde84b80e6393b656a4837 100644 (file)
@@ -162,7 +162,7 @@ test_fill_called_on_find_end(void)
     reader.js_fill = fill_from_cookie;
     reader.js_used = 0;
     reader.js_buf = (char_u *)"  [  \"a\"  ,  123  ";
-    reader.js_cookie =        "  [  \"a\"  ,  123  ]  ";
+    reader.js_cookie =       "  [  \"a\"  ,  123  ]  ";
     assert(json_find_end(&reader, 0) == OK);
     reader.js_buf = (char_u *)"  [  \"a\"  ,  ";
     assert(json_find_end(&reader, 0) == OK);
@@ -186,7 +186,7 @@ test_fill_called_on_string(void)
     reader.js_used = 0;
     reader.js_buf = (char_u *)" \"foo";
     reader.js_end = reader.js_buf + STRLEN(reader.js_buf);
-    reader.js_cookie =        " \"foobar\"  ";
+    reader.js_cookie =       " \"foobar\"  ";
     assert(json_decode_string(&reader, NULL, '"') == OK);
 }
 #endif
index 7a77916960ad5cea3ff0ab7e5915144d76d0908c..2c5448345ea47c2a0a5ea9c2c57a3c07e30617b5 100644 (file)
@@ -8,6 +8,7 @@ typedef enum {
   VTERM_MOD_CTRL  = 0x04
 } VTermModifier;
 
+/* The order here must match keycodes[] in src/keyboard.c! */
 typedef enum {
   VTERM_KEY_NONE,
 
index 575fd52d4a6aaa58883769b991c3fe08110e3cdb..9b788b0d5e59ec40df4de6831b9bf702d350c398 100644 (file)
@@ -2260,7 +2260,6 @@ utf_char2len(int c)
 /*
  * Convert Unicode character "c" to UTF-8 string in "buf[]".
  * Returns the number of bytes.
- * This does not include composing characters.
  */
     int
 utf_char2bytes(int c, char_u *buf)
index f1c06985cc8e06cb86b6fef34d2c792493ab2258..02c594c5bd5d6a8e6bfc11c385d5b7b36ae4cdc4 100644 (file)
@@ -18,7 +18,7 @@
 /* based on Alpha's gen64def.h; the file is absent on VAX */
 typedef struct _generic_64 {
 #   pragma __nomember_alignment
-    __union  {                          /* You can treat me as...  */
+    __union  {                         /* You can treat me as...  */
        /* long long is not available on VAXen */
        /* unsigned __int64 gen64$q_quadword; ...a single 64-bit value, or */
 
@@ -461,8 +461,7 @@ mch_expand_wildcards(int num_pat, char_u **pat, int *num_file, char_u ***file, i
        result = decc$translate_vms(vms_fixfilename(buf));
        if ( (int) result == 0 || (int) result == -1  ) {
            cnt = 0;
-       }
-        else {
+       } else {
            cnt = decc$to_vms(result, vms_wproc, 1 /*allow wild*/ , (flags & EW_DIR ? 0:1 ) /*allow directory*/) ;
        }
        if (cnt > 0)
@@ -519,10 +518,9 @@ mch_expandpath(garray_T *gap, char_u *path, int flags)
     /* otherwise it might create ACCVIO error in decc$to_vms      */
     result = decc$translate_vms(vms_fixfilename(path));
     if ( (int) result == 0 || (int) result == -1  ) {
-        cnt = 0;
-    }
-    else {
-        cnt = decc$to_vms(result, vms_wproc, 1 /*allow_wild*/, (flags & EW_DIR ? 0:1 ) /*allow directory*/);
+       cnt = 0;
+    } else {
+       cnt = decc$to_vms(result, vms_wproc, 1 /*allow_wild*/, (flags & EW_DIR ? 0:1 ) /*allow directory*/);
     }
     if (cnt > 0)
        cnt = vms_match_num;
@@ -741,68 +739,66 @@ RealWaitForChar(
        get_tty();
 
     if (sec > 0) {
-        /* time-out specified; convert it to absolute time */
+       /* time-out specified; convert it to absolute time */
        /* sec>0 requirement of lib$cvtf_to_internal_time()*/
 
-        /* get current time (number of 100ns ticks since the VMS Epoch) */
-        status = sys$gettim(&time_curr);
-        if (status != SS$_NORMAL)
-            return 0; /* error */
-        /* construct the delta time */
+       /* get current time (number of 100ns ticks since the VMS Epoch) */
+       status = sys$gettim(&time_curr);
+       if (status != SS$_NORMAL)
+           return 0; /* error */
+       /* construct the delta time */
 #if __G_FLOAT==0
 # ifndef VAX
        /* IEEE is default on IA64, but can be used on Alpha too - but not on VAX */
-        status = lib$cvts_to_internal_time(
-                &convert_operation, &sec, &time_diff);
+       status = lib$cvts_to_internal_time(
+               &convert_operation, &sec, &time_diff);
 # endif
 #else   /* default on Alpha and VAX  */
-        status = lib$cvtf_to_internal_time(
+       status = lib$cvtf_to_internal_time(
                &convert_operation, &sec, &time_diff);
 #endif
-        if (status != LIB$_NORMAL)
-            return 0; /* error */
-        /* add them up */
-        status = lib$add_times(
-                &time_curr,
-                &time_diff,
-                &time_out);
-        if (status != LIB$_NORMAL)
-            return 0; /* error */
+       if (status != LIB$_NORMAL)
+           return 0; /* error */
+       /* add them up */
+       status = lib$add_times(
+               &time_curr,
+               &time_diff,
+               &time_out);
+       if (status != LIB$_NORMAL)
+           return 0; /* error */
     }
 
     while (TRUE) {
-        /* select() */
-        status = sys$qiow(0, iochan, IO$_SENSEMODE | IO$M_TYPEAHDCNT, iosb,
-                0, 0, &typeahead, 8, 0, 0, 0, 0);
+       /* select() */
+       status = sys$qiow(0, iochan, IO$_SENSEMODE | IO$M_TYPEAHDCNT, iosb,
+               0, 0, &typeahead, 8, 0, 0, 0, 0);
        if (status != SS$_NORMAL || (iosb[0] & 0xFFFF) != SS$_NORMAL)
-            return 0; /* error */
-
-        if (typeahead.numchars)
-            return 1; /* ready to read */
-
-        /* there's nothing to read; what now? */
-        if (msec == 0) {
-            /* immediate time-out; return impatiently */
-            return 0;
-        }
-        else if (msec < 0) {
-            /* no time-out; wait on indefinitely */
-            continue;
-        }
-        else {
-            /* time-out needs to be checked */
-            status = sys$gettim(&time_curr);
-            if (status != SS$_NORMAL)
-                return 0; /* error */
-
-            status = lib$sub_times(
-                    &time_out,
-                    &time_curr,
-                    &time_diff);
-            if (status != LIB$_NORMAL)
-                return 0; /* error, incl. time_diff < 0 (i.e. time-out) */
-
-            /* otherwise wait some more */
-        }
+           return 0; /* error */
+
+       if (typeahead.numchars)
+           return 1; /* ready to read */
+
+       /* there's nothing to read; what now? */
+       if (msec == 0) {
+           /* immediate time-out; return impatiently */
+           return 0;
+       } else if (msec < 0) {
+           /* no time-out; wait on indefinitely */
+           continue;
+       } else {
+           /* time-out needs to be checked */
+           status = sys$gettim(&time_curr);
+           if (status != SS$_NORMAL)
+               return 0; /* error */
+
+           status = lib$sub_times(
+                   &time_out,
+                   &time_curr,
+                   &time_diff);
+           if (status != LIB$_NORMAL)
+               return 0; /* error, incl. time_diff < 0 (i.e. time-out) */
+
+           /* otherwise wait some more */
+       }
     }
 }
index 1a27ab69b7425786b8754440951d67c52ca61dd2..940f63e027177b1c8c0f43bd5d6d73f4d073afe0 100644 (file)
--- a/src/pty.c
+++ b/src/pty.c
@@ -268,7 +268,7 @@ OpenPTY(char **ttyn)
 #endif
 
 #if defined(HAVE_SVR4_PTYS) && !defined(PTY_DONE) && !defined(hpux) \
-                    && !(defined(MACOS_X) && !defined(MAC_OS_X_VERSION_10_6))
+           && !(defined(MACOS_X) && !defined(MAC_OS_X_VERSION_10_6))
 
 /* NOTE: Even though HPUX can have /dev/ptmx, the code below doesn't work!
  * Same for Mac OS X Leopard (10.5). */
index f5ffe20ac626c1ddf2659dbe613988b030118afb..048387b26ff8d54780d1188e690b06afdfd28fa6 100644 (file)
@@ -778,6 +778,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1550,
 /**/
     1549,
 /**/
index 2566859fa6d6bf17a4b3050dd70bc4225b1bbbf4..13efd911e5ba1ecd2e72b949a8c470285680c41b 100644 (file)
@@ -55,7 +55,7 @@ main(void)
        ++p;
     }
     while (*p == L' ')
-        ++p;
+       ++p;
 
     /*
      * "-s" argument: don't wait for a key hit.
index 0f9c7f7eac167ca34cdfe3ad691f954a1241ccac..3b57921ff4672af624a92ea23e6d8c0a73d82507 100644 (file)
@@ -5,7 +5,7 @@ There are three ways to remove Vim:
 1. With the GUI uninstaller.
    This is only available when Vim was installed with the self-installing
    executable.  This has a minimal number of questions.  It can delete
-   everything that was installed.  This also unregisters the VisVim.dll
+   everything that was installed.  This also unregisters the VisVim.dll.
 
 2. With uninstal.exe.
    This removes most installed items, but does not delete the files you