patch 7.4.1042
Problem:    g-CTRL-G shows the word count, but there is no way to get the word
            count in a script.
Solution:   Add the wordcount() function. (Christian Brabandt)
diff --git a/src/normal.c b/src/normal.c
index 89c67d9..640c060 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -8270,7 +8270,7 @@
      * "g CTRL-G": display info about cursor position
      */
     case Ctrl_G:
-	cursor_pos_info();
+	cursor_pos_info(NULL);
 	break;
 
     /*