Karsten Hopp c37386
To: vim_dev@googlegroups.com
Karsten Hopp c37386
Subject: Patch 7.4.919
Karsten Hopp c37386
Fcc: outbox
Karsten Hopp c37386
From: Bram Moolenaar <Bram@moolenaar.net>
Karsten Hopp c37386
Mime-Version: 1.0
Karsten Hopp c37386
Content-Type: text/plain; charset=UTF-8
Karsten Hopp c37386
Content-Transfer-Encoding: 8bit
Karsten Hopp c37386
------------
Karsten Hopp c37386
Karsten Hopp c37386
Patch 7.4.919
Karsten Hopp c37386
Problem:    The dll options are not in the options window.
Karsten Hopp c37386
Solution:   Add the dll options.  And other fixes.
Karsten Hopp c37386
Files:	    runtime/optwin.vim
Karsten Hopp c37386
Karsten Hopp c37386
Karsten Hopp c37386
*** ../vim-7.4.918/runtime/optwin.vim	2015-07-17 14:16:49.854596682 +0200
Karsten Hopp c37386
--- runtime/optwin.vim	2015-11-10 19:27:27.263818531 +0100
Karsten Hopp c37386
***************
Karsten Hopp c37386
*** 1,7 ****
Karsten Hopp c37386
  " These commands create the option window.
Karsten Hopp c37386
  "
Karsten Hopp c37386
  " Maintainer:	Bram Moolenaar <Bram@vim.org>
Karsten Hopp c37386
! " Last Change:	2013 Jun 29
Karsten Hopp c37386
  
Karsten Hopp c37386
  " If there already is an option window, jump to that one.
Karsten Hopp c37386
  if bufwinnr("option-window") > 0
Karsten Hopp c37386
--- 1,7 ----
Karsten Hopp c37386
  " These commands create the option window.
Karsten Hopp c37386
  "
Karsten Hopp c37386
  " Maintainer:	Bram Moolenaar <Bram@vim.org>
Karsten Hopp c37386
! " Last Change:	2015 Nov 10
Karsten Hopp c37386
  
Karsten Hopp c37386
  " If there already is an option window, jump to that one.
Karsten Hopp c37386
  if bufwinnr("option-window") > 0
Karsten Hopp c37386
***************
Karsten Hopp c37386
*** 149,155 ****
Karsten Hopp c37386
  call append(0, '" Each "set" line shows the current value of an option (on the left).')
Karsten Hopp c37386
  call append(1, '" Hit <CR> on a "set" line to execute it.')
Karsten Hopp c37386
  call append(2, '"            A boolean option will be toggled.')
Karsten Hopp c37386
! call append(3, '"            For other options you can edit the value.')
Karsten Hopp c37386
  call append(4, '" Hit <CR> on a help line to open a help window on this option.')
Karsten Hopp c37386
  call append(5, '" Hit <CR> on an index line to jump there.')
Karsten Hopp c37386
  call append(6, '" Hit <Space> on a "set" line to refresh it.')
Karsten Hopp c37386
--- 149,155 ----
Karsten Hopp c37386
  call append(0, '" Each "set" line shows the current value of an option (on the left).')
Karsten Hopp c37386
  call append(1, '" Hit <CR> on a "set" line to execute it.')
Karsten Hopp c37386
  call append(2, '"            A boolean option will be toggled.')
Karsten Hopp c37386
! call append(3, '"            For other options you can edit the value before hitting <CR>.')
Karsten Hopp c37386
  call append(4, '" Hit <CR> on a help line to open a help window on this option.')
Karsten Hopp c37386
  call append(5, '" Hit <CR> on an index line to jump there.')
Karsten Hopp c37386
  call append(6, '" Hit <Space> on a "set" line to refresh it.')
Karsten Hopp c37386
***************
Karsten Hopp c37386
*** 606,611 ****
Karsten Hopp c37386
--- 606,615 ----
Karsten Hopp c37386
      call append("$", "guiheadroom\troom (in pixels) left above/below the window")
Karsten Hopp c37386
      call append("$", " \tset ghr=" . &ghr)
Karsten Hopp c37386
    endif
Karsten Hopp c37386
+   if has("directx")
Karsten Hopp c37386
+     call append("$", "renderoptions\toptions for text rendering")
Karsten Hopp c37386
+     call <SID>OptionG("rop", &rop)
Karsten Hopp c37386
+   endif
Karsten Hopp c37386
    call append("$", "guipty\tuse a pseudo-tty for I/O to external commands")
Karsten Hopp c37386
    call <SID>BinOptionG("guipty", &guipty)
Karsten Hopp c37386
    if has("browse")
Karsten Hopp c37386
***************
Karsten Hopp c37386
*** 701,706 ****
Karsten Hopp c37386
--- 705,712 ----
Karsten Hopp c37386
  call <SID>BinOptionG("eb", &eb)
Karsten Hopp c37386
  call append("$", "visualbell\tuse a visual bell instead of beeping")
Karsten Hopp c37386
  call <SID>BinOptionG("vb", &vb)
Karsten Hopp c37386
+ call append("$", "belloff\tdo not ring the bell for these reasons")
Karsten Hopp c37386
+ call <SID>OptionG("belloff", &belloff)
Karsten Hopp c37386
  if has("multi_lang")
Karsten Hopp c37386
    call append("$", "helplang\tlist of preferred languages for finding help")
Karsten Hopp c37386
    call <SID>OptionG("hlg", &hlg)
Karsten Hopp c37386
***************
Karsten Hopp c37386
*** 724,729 ****
Karsten Hopp c37386
--- 730,736 ----
Karsten Hopp c37386
  
Karsten Hopp c37386
  call <SID>Header("editing text")
Karsten Hopp c37386
  call append("$", "undolevels\tmaximum number of changes that can be undone")
Karsten Hopp c37386
+ call append("$", "\t(global or local to buffer)")
Karsten Hopp c37386
  call append("$", " \tset ul=" . &ul)
Karsten Hopp c37386
  call append("$", "undoreload\tmaximum number lines to save for undo on a buffer reload")
Karsten Hopp c37386
  call append("$", " \tset ur=" . &ur)
Karsten Hopp c37386
***************
Karsten Hopp c37386
*** 949,955 ****
Karsten Hopp c37386
  call append("$", "endofline\tlast line in the file has an end-of-line")
Karsten Hopp c37386
  call append("$", "\t(local to buffer)")
Karsten Hopp c37386
  call <SID>BinOptionL("eol")
Karsten Hopp c37386
! call append("$", "fixeol\tfixes missing end-of-line at end of text file")
Karsten Hopp c37386
  call append("$", "\t(local to buffer)")
Karsten Hopp c37386
  call <SID>BinOptionL("fixeol")
Karsten Hopp c37386
  if has("multi_byte")
Karsten Hopp c37386
--- 956,962 ----
Karsten Hopp c37386
  call append("$", "endofline\tlast line in the file has an end-of-line")
Karsten Hopp c37386
  call append("$", "\t(local to buffer)")
Karsten Hopp c37386
  call <SID>BinOptionL("eol")
Karsten Hopp c37386
! call append("$", "fixendofline\tfixes missing end-of-line at end of text file")
Karsten Hopp c37386
  call append("$", "\t(local to buffer)")
Karsten Hopp c37386
  call <SID>BinOptionL("fixeol")
Karsten Hopp c37386
  if has("multi_byte")
Karsten Hopp c37386
***************
Karsten Hopp c37386
*** 976,981 ****
Karsten Hopp c37386
--- 983,989 ----
Karsten Hopp c37386
  call append("$", "backupskip\tpatterns that specify for which files a backup is not made")
Karsten Hopp c37386
  call append("$", " \tset bsk=" . &bsk)
Karsten Hopp c37386
  call append("$", "backupcopy\twhether to make the backup as a copy or rename the existing file")
Karsten Hopp c37386
+ call append("$", "\t(global or local to buffer)")
Karsten Hopp c37386
  call append("$", " \tset bkc=" . &bkc)
Karsten Hopp c37386
  call append("$", "backupdir\tlist of directories to put backup files in")
Karsten Hopp c37386
  call <SID>OptionG("bdir", &bdir)
Karsten Hopp c37386
***************
Karsten Hopp c37386
*** 1191,1198 ****
Karsten Hopp c37386
    call <SID>OptionL("kmp")
Karsten Hopp c37386
  endif
Karsten Hopp c37386
  if has("langmap")
Karsten Hopp c37386
!   call append("$", "langmap\ttranslate characters for Normal mode")
Karsten Hopp c37386
    call <SID>OptionG("lmap", &lmap)
Karsten Hopp c37386
  endif
Karsten Hopp c37386
  if has("xim")
Karsten Hopp c37386
    call append("$", "imdisable\twhen set never use IM; overrules following IM options")
Karsten Hopp c37386
--- 1199,1208 ----
Karsten Hopp c37386
    call <SID>OptionL("kmp")
Karsten Hopp c37386
  endif
Karsten Hopp c37386
  if has("langmap")
Karsten Hopp c37386
!   call append("$", "langmap\tlist of characters that are translated in Normal mode")
Karsten Hopp c37386
    call <SID>OptionG("lmap", &lmap)
Karsten Hopp c37386
+   call append("$", "langnoremap\tdon't apply 'langmap' to mapped characters")
Karsten Hopp c37386
+   call <SID>BinOptionG("lnr", &lnr)
Karsten Hopp c37386
  endif
Karsten Hopp c37386
  if has("xim")
Karsten Hopp c37386
    call append("$", "imdisable\twhen set never use IM; overrules following IM options")
Karsten Hopp c37386
***************
Karsten Hopp c37386
*** 1297,1302 ****
Karsten Hopp c37386
--- 1307,1328 ----
Karsten Hopp c37386
    call append("$", "mzquantum\tinterval in milliseconds between polls for MzScheme threads")
Karsten Hopp c37386
    call append("$", " \tset mzq=" . &mzq)
Karsten Hopp c37386
  endif
Karsten Hopp c37386
+ if exists("&luadll")
Karsten Hopp c37386
+   call append("$", "luadll\tname of the Lua dynamic library")
Karsten Hopp c37386
+   call <SID>OptionG("luadll", &luadll)
Karsten Hopp c37386
+ endif
Karsten Hopp c37386
+ if exists("&perldll")
Karsten Hopp c37386
+   call append("$", "perldll\tname of the Perl dynamic library")
Karsten Hopp c37386
+   call <SID>OptionG("perldll", &perldll)
Karsten Hopp c37386
+ endif
Karsten Hopp c37386
+ if exists("&pythondll")
Karsten Hopp c37386
+   call append("$", "pythondll\tname of the Python 2 dynamic library")
Karsten Hopp c37386
+   call <SID>OptionG("pythondll", &pythondll)
Karsten Hopp c37386
+ endif
Karsten Hopp c37386
+ if exists("&pythonthreedll")
Karsten Hopp c37386
+   call append("$", "pythonthreedll\tname of the Python 3 dynamic library")
Karsten Hopp c37386
+   call <SID>OptionG("pythonthreedll", &pythonthreedll)
Karsten Hopp c37386
+ endif
Karsten Hopp c37386
  
Karsten Hopp c37386
  set cpo&vim
Karsten Hopp c37386
  
Karsten Hopp c37386
*** ../vim-7.4.918/src/version.c	2015-11-10 19:41:30.519462341 +0100
Karsten Hopp c37386
--- src/version.c	2015-11-10 19:45:40.060988233 +0100
Karsten Hopp c37386
***************
Karsten Hopp c37386
*** 743,744 ****
Karsten Hopp c37386
--- 743,746 ----
Karsten Hopp c37386
  {   /* Add new patch number below this line */
Karsten Hopp c37386
+ /**/
Karsten Hopp c37386
+     919,
Karsten Hopp c37386
  /**/
Karsten Hopp c37386
Karsten Hopp c37386
-- 
Karsten Hopp c37386
The primary purpose of the DATA statement is to give names to constants;
Karsten Hopp c37386
instead of referring to pi as 3.141592653589793 at every appearance, the
Karsten Hopp c37386
variable PI can be given that value with a DATA statement and used instead
Karsten Hopp c37386
of the longer form of the constant.  This also simplifies modifying the
Karsten Hopp c37386
program, should the value of pi change.
Karsten Hopp c37386
	-- FORTRAN manual for Xerox Computers
Karsten Hopp c37386
Karsten Hopp c37386
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
Karsten Hopp c37386
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
Karsten Hopp c37386
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
Karsten Hopp c37386
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///