]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime: Fix typos in various files
authorViktor Szépe <viktor@szepe.net>
Wed, 23 Aug 2023 19:20:00 +0000 (21:20 +0200)
committerChristian Brabandt <cb@256bit.org>
Wed, 23 Aug 2023 19:20:00 +0000 (21:20 +0200)
closes: #12836

Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Viktor Szépe <viktor@szepe.net>
30 files changed:
runtime/ftplugin/debchangelog.vim
runtime/ftplugin/readline.vim
runtime/ftplugin/rst.vim
runtime/ftplugin/sql.vim
runtime/ftplugin/tidy.vim
runtime/ftplugin/zig.vim
runtime/indent/nsis.vim
runtime/indent/php.vim
runtime/indent/rapid.vim
runtime/syntax/8th.vim
runtime/syntax/a65.vim
runtime/syntax/chaiscript.vim
runtime/syntax/euphoria4.vim
runtime/syntax/flexwiki.vim
runtime/syntax/gdb.vim
runtime/syntax/groovy.vim
runtime/syntax/lite.vim
runtime/syntax/logtalk.vim
runtime/syntax/lss.vim
runtime/syntax/pymanifest.vim
runtime/syntax/rmd.vim
runtime/syntax/sgml.vim
runtime/syntax/slrnrc.vim
runtime/syntax/spec.vim
runtime/syntax/sqlinformix.vim
runtime/syntax/sqlj.vim
runtime/syntax/squid.vim
runtime/syntax/tasm.vim
runtime/syntax/tf.vim
runtime/syntax/tsalt.vim

index 062fc054c85043f4e790684b19148e9adaa73597..dca7f7355a1d52a1a11321553c9b35b27abd6491 100644 (file)
@@ -122,7 +122,7 @@ function NewVersion()
     normal! 1G0
     call search(')')
     normal! h
-    " ':normal' doens't support key annotation (<c-a>) directly.
+    " ':normal' doesn't support key annotation (<c-a>) directly.
     " Vim's manual recommends using ':exe' to use key annotation indirectly (backslash-escaping needed though).
     exe "normal! \<c-a>"
     call setline(1, substitute(getline(1), '-\$\$', '-', ''))
index eba71223479effefba0d9693de33d5e553955825..524eeb736add0ce1929975e430f3889c140b3ea5 100644 (file)
@@ -25,7 +25,7 @@ if exists("loaded_matchit") && !exists("b:match_words")
 endif
 
 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
-  let b:browsefilter = "Readline Intialization Files (inputrc .inputrc)\tinputrc;*.inputrc\n" ..
+  let b:browsefilter = "Readline Initialization Files (inputrc .inputrc)\tinputrc;*.inputrc\n" ..
        \              "All Files (*.*)\t*.*\n"
   let b:undo_ftplugin ..= " | unlet! b:browsefilter"
 endif
index ff7a402d10092439f57cdb22dace392342248281..c88e8f258084be4fd59afb5af45430dbbb5f051f 100644 (file)
@@ -28,7 +28,7 @@ setlocal formatoptions+=tcroql
 " directives (..) and ordered lists (1.), although it can cause problems for
 " many other cases.
 "
-" More sophisticated indentation rules should be revisted in the future.
+" More sophisticated indentation rules should be revisited in the future.
 
 if exists("g:rst_style") && g:rst_style != 0
     setlocal expandtab shiftwidth=3 softtabstop=3 tabstop=8
index 1c02a98c7c96ba3f02c1ed2ba7feb7843d84b9e4..7a29d39f8ed5cbf1ed382102b9647ef27e115230 100644 (file)
@@ -140,7 +140,7 @@ if !exists("*SQL_SetType")
                         \ )
 
             " Remove duplicates, since sqlanywhere.vim can exist in the
-            " sytax, indent and ftplugin directory, yet we only want
+            " syntax, indent and ftplugin directory, yet we only want
             " to display the option once
             let index = match(sqls, '.\{-}\ze\n')
             while index > -1
@@ -204,7 +204,7 @@ if !exists("*SQL_SetType")
         endif
         let b:sql_type_override = new_sql_type
 
-        " Remove any cached SQL since a new sytax will have different
+        " Remove any cached SQL since a new syntax will have different
         " items and groups
         if !exists('g:loaded_sql_completion') || g:loaded_sql_completion >= 100
             call sqlcomplete#ResetCacheSyntax()
index 470548d83a0dea689ceea1920652264b45450aea..b81b66db4afe85acf13e4cfb772378c8b79c0231 100644 (file)
@@ -1,5 +1,5 @@
 " Vim filetype plugin file
-" Language:    HMTL Tidy Configuration
+" Language:    HTML Tidy Configuration
 " Maintainer:  Doug Kearns <dougkearns@gmail.com>
 " Last Change: 2020 Sep 4
 
index e740a52849e3f22bfaae557a9090fde10fc7f576..5f453fc8d1a85ccd2f78893337bd0513950b8200 100644 (file)
@@ -17,7 +17,7 @@ compiler zig_build
 " Match Zig builtin fns
 setlocal iskeyword+=@-@
 
-" Recomended code style, no tabs and 4-space indentation
+" Recommended code style, no tabs and 4-space indentation
 setlocal expandtab
 setlocal tabstop=8
 setlocal softtabstop=4
index 5d3decca371ea31b02b903dfdb84cbc3128f56ed..37317812012608a9f2b3dca6003aa48e640dc709 100644 (file)
@@ -15,7 +15,7 @@ setlocal nosmartindent
 setlocal noautoindent
 setlocal indentexpr=GetNsisIndent(v:lnum)
 setlocal indentkeys=!^F,o,O
-setlocal indentkeys+==~${Else,=~${EndIf,=~${EndUnless,=~${AndIf,=~${AndUnless,=~${OrIf,=~${OrUnless,=~${Case,=~${Default,=~${EndSelect,=~${EndSwith,=~${Loop,=~${Next,=~${MementoSectionEnd,=~FunctionEnd,=~SectionEnd,=~SectionGroupEnd,=~PageExEnd,0=~!macroend,0=~!if,0=~!else,0=~!endif
+setlocal indentkeys+==~${Else,=~${EndIf,=~${EndUnless,=~${AndIf,=~${AndUnless,=~${OrIf,=~${OrUnless,=~${Case,=~${Default,=~${EndSelect,=~${EndSwitch,=~${Loop,=~${Next,=~${MementoSectionEnd,=~FunctionEnd,=~SectionEnd,=~SectionGroupEnd,=~PageExEnd,0=~!macroend,0=~!if,0=~!else,0=~!endif
 
 let b:undo_indent = "setl ai< inde< indk< si<"
 
index 0e623689d5e05c0f9fd8d45453e0f9f7167d6f58..6b3d70005948b8ba40ae579536814ef0c0f7ed1a 100644 (file)
@@ -327,13 +327,13 @@ endfun
 
 function! FindArrowIndent (lnum)  " {{{
 
-    let parrentArrowPos = -1
+    let parentArrowPos = -1
     let cursorPos = -1
     let lnum = a:lnum
     while lnum > 1
        let last_line = getline(lnum)
        if last_line =~ '^\s*->'
-           let parrentArrowPos = indent(a:lnum)
+           let parentArrowPos = indent(a:lnum)
            break
        else
 
@@ -355,28 +355,28 @@ function! FindArrowIndent (lnum)  " {{{
                    else
                    endif
                else
-                   let parrentArrowPos = -1
+                   let parentArrowPos = -1
                    break
                end
            endif
 
            if cleanedLnum =~ '->'
                call cursor(lnum, cursorPos == -1 ? strwidth(cleanedLnum) : cursorPos)
-               let parrentArrowPos = searchpos('->', 'cWb', lnum)[1] - 1
+               let parentArrowPos = searchpos('->', 'cWb', lnum)[1] - 1
 
                break
            else
-               let parrentArrowPos = -1
+               let parentArrowPos = -1
                break
            endif
        endif
     endwhile
 
-    if parrentArrowPos == -1
-       let parrentArrowPos = indent(lnum) + shiftwidth()
+    if parentArrowPos == -1
+       let parentArrowPos = indent(lnum) + shiftwidth()
     end
 
-    return parrentArrowPos
+    return parentArrowPos
 endfun "}}}
 
 function! FindTheIfOfAnElse (lnum, StopAfterFirstPrevElse) " {{{
index f97ebf84db9fdb50a488ae5884ee22fd0bd48d09..2c99bb249118f602dbe039e7d280dbcdbac30841 100644 (file)
@@ -146,7 +146,7 @@ endfunction
 
 " Returns the length of the line until a:str occur outside a string or
 " comment. Search starts at string index a:startIdx.
-" If a:str is a word also add word bounderies and case insesitivity.
+" If a:str is a word also add word boundaries and case insensitivity.
 " Note: rapidTodoComment and rapidDebugComment are not taken into account.
 function s:RapidLenTilStr(lnum, str, startIdx) abort
 
@@ -179,8 +179,8 @@ function s:RapidLenTilStr(lnum, str, startIdx) abort
   return -1
 endfunction
 
-" a:lchar shoud be one of (, ), [, ], { or }
-" returns the number of opening/closing parenthesise which have no
+" a:lchar should be one of (, ), [, ], { or }
+" returns the number of opening/closing parentheses which have no
 " closing/opening match in getline(a:lnum)
 function s:RapidLoneParen(lnum,lchar) abort
   if a:lchar == "(" || a:lchar == ")"
@@ -205,7 +205,7 @@ function s:RapidLoneParen(lnum,lchar) abort
   endif
 
   let l:opnParen = 0
-  " count opening brakets
+  " count opening brackets
   let l:i = 0
   while l:i >= 0
     let l:i = s:RapidLenTilStr(a:lnum, l:opnParChar, l:i)
@@ -216,7 +216,7 @@ function s:RapidLoneParen(lnum,lchar) abort
   endwhile
 
   let l:clsParen = 0
-  " count closing brakets
+  " count closing brackets
   let l:i = 0
   while l:i >= 0
     let l:i = s:RapidLenTilStr(a:lnum, l:clsParChar, l:i)
@@ -242,7 +242,7 @@ function s:RapidPreNoneBlank(lnum) abort
   let nPreNoneBlank = prevnonblank(a:lnum)
 
   while nPreNoneBlank>0 && getline(nPreNoneBlank) =~ '\v\c^\s*(\%\%\%|!)'
-    " Previouse none blank line irrelevant. Look further aback.
+    " Previous none blank line irrelevant. Look further aback.
     let nPreNoneBlank = prevnonblank(nPreNoneBlank - 1)
   endwhile
 
index ce27d10a44e81f20fc766475c673e0cc417ddd81..643c9cb095dba16ef4c64b5b192b152148e39acd 100644 (file)
@@ -363,7 +363,7 @@ syn region eighthComment start="\zs\\" end="$" contains=eighthTodo
 if !exists("did_eighth_syntax_inits")
     let did_eighth_syntax_inits=1
 
-    " The default methods for highlighting. Can be overriden later.
+    " The default methods for highlighting. Can be overridden later.
     hi def link eighthTodo Todo
     hi def link eighthOperators Operator
     hi def link eighthMath Number
index b232e826cdb53857a5fbc5ae637622099ef8d256..6445b9438b941cfe6d09e4909183e6d8f64ef212 100644 (file)
@@ -118,7 +118,7 @@ syn match a65Section        "\(^\|\s\)\.)\($\|\s\)"
 " Strings
 syn match a65String    "\".*\""
 
-" Programm Counter
+" Program Counter
 syn region a65PC       start="\*=" end="\>" keepend
 
 " HI/LO Byte
index 5a64bdb556344cb2668ab6ea0b226529c2a9481e..9925ba51387bd5f458d728e94c695922b176832a 100644 (file)
@@ -61,7 +61,7 @@ syn region  chaiscriptFunc         matchgroup=chaiscriptFunc start="`" end="`"
 " Intentionally leaving out all of the normal, well known operators
 syn match   chaiscriptOperator     "\.\."
 
-" Guard seperator as an operator
+" Guard separator as an operator
 syn match   chaiscriptOperator     ":"
 
 " Comments
index 5e668a7d6712f2eb16f63f402f6aead5ccc13ec6..baa0e8e7b9e01e92831ec21d79ef3b235d4d1b6b 100644 (file)
@@ -27,7 +27,7 @@ syn keyword euphoria4Debug    includes inline warning define
 " Keywords for conditional compilation - from $EUDIR/include/euphoria/keywords.e:
 syn keyword euphoria4PreProc   elsedef elsifdef ifdef 
 
-" Keywords (Statments) - from $EUDIR/include/euphoria/keywords.e:
+" Keywords (Statements) - from $EUDIR/include/euphoria/keywords.e:
 syn keyword euphoria4Keyword   and as break by case constant continue do else     
 syn keyword euphoria4Keyword   elsif end entry enum exit export
 syn keyword euphoria4Keyword   fallthru for function global goto if include
index 6b15ab2d90b80fcc031f2e68aaec64687197a93d..3b5f7ff5735896839125fef59aa5c4c78e7d6976 100644 (file)
@@ -67,10 +67,10 @@ syntax match flexwikiEmoticons      /\((.)\|:[()|$@]\|:-[DOPS()\]|$@]\|;)\|:'(\)
 " Aggregate all the regular text highlighting into flexwikiText
 syntax cluster flexwikiText contains=flexwikiItalic,flexwikiBold,flexwikiCode,flexwikiDeEmphasis,flexwikiDelText,flexwikiInsText,flexwikiSuperScript,flexwikiSubScript,flexwikiCitation,flexwikiLink,flexwikiWord,flexwikiEmoticons
 
-" single-line WikiPropertys
+" single-line WikiProperties
 syntax match flexwikiSingleLineProperty /^:\?[A-Z_][_a-zA-Z0-9]\+:/
 
-" TODO: multi-line WikiPropertys
+" TODO: multi-line WikiProperties
 
 " Header levels, 1-6
 syntax match flexwikiH1             /^!.*$/
index c820ba40a9974214ed4ad26e35c7306ea41dcb9a..c15b96de6f1f8788428772425ec4298bc36ab329 100644 (file)
@@ -30,7 +30,7 @@ syn keyword gdbStatement contained search section set sharedlibrary shell show s
 syn keyword gdbStatement contained stop target tbreak tdump tfind thbreak thread tp trace tstart tstatus tstop
 syn keyword gdbStatement contained tty und[isplay] unset until up watch whatis where while ws x
 syn match gdbFuncDef "\<define\>.*"
-syn match gdbStatmentContainer "^\s*\S\+" contains=gdbStatement,gdbFuncDef
+syn match gdbStatementContainer "^\s*\S\+" contains=gdbStatement,gdbFuncDef
 syn match gdbStatement "^\s*info" nextgroup=gdbInfo skipwhite skipempty
 
 " some commonly used abbreviations
index 41495e668284adddc60d92ac1f3a40e72da15e2f..e48279bd1a5fefd5ebf3e7413e453b023efdbf4f 100644 (file)
@@ -362,7 +362,7 @@ exec "syn sync ccomment groovyComment minlines=" . groovy_minlines
 
 " Mark these as operators
 
-" Hightlight brackets
+" Highlight brackets
 " syn match  groovyBraces              "[{}]"
 " syn match  groovyBraces              "[\[\]]"
 " syn match  groovyBraces              "[\|]"
index a8d26892d42b0eb020b8cf809a2fa4e74a390088..f6e41e7e188fcd2e9c7d19676d925d6b308ab3a6 100644 (file)
@@ -5,7 +5,7 @@
 " Email:       Subject: send syntax_vim.tgz
 " Last Change: 2001 Mai 01
 "
-" Options      lite_sql_query = 1 for SQL syntax highligthing inside strings
+" Options      lite_sql_query = 1 for SQL syntax highlighting inside strings
 "              lite_minlines = x     to sync at least x lines backwards
 
 " quit when a syntax file was already loaded
index a7fe9ce925f177a53163090c5d12540a3304acf5..bc70ef41b4bff8fe4da73610d53dd2760efbbee2 100644 (file)
@@ -330,7 +330,7 @@ syn match   logtalkKeyword          "\<t\(an\|runcate\)\ze("
 syn match      logtalkKeyword          "\<ceiling\ze("
 
 
-" Other arithemtic functors
+" Other arithmetic functors
 
 syn match      logtalkOperator         "\*\*"
 syn match      logtalkKeyword          "\<s\(in\|qrt\)\ze("
index 6ee717bcb437ad260f6584c2c7998bd2f04dbe9b..eceaf756749995eec81088ce924e9807fb33c60c 100644 (file)
@@ -9,7 +9,7 @@ if exists("b:current_syntax")
 endif
 
 " This setup is probably atypical for a syntax highlighting file, because
-" most of it is not really intended to be overrideable.  Instead, the
+" most of it is not really intended to be overridable.  Instead, the
 " highlighting is supposed to correspond to the highlighting specified by
 " the .lss file entries themselves; ie. the "bold" keyword should be bold,
 " the "red" keyword should be red, and so forth.  The exceptions to this
index 54295c45dcb9385039c4df7adc4068578724a4ad..26bdf797e0d69106347a0bd71efbc8df5a862aa6 100644 (file)
@@ -20,7 +20,7 @@ syn match pymanifestComment /\\\@1<!#.*/ contains=pymanifestTodo
 " Commands
 syn keyword pymanifestCommand
             \ include exclude
-            \ recursive-include resursive-exclude
+            \ recursive-include recursive-exclude
             \ global-include global-exclude
             \ graft prune
 
index f849af97d268148bb65bb462ceca84f1155b0e2d..0eab0e6fab5e88d11943ee78bde708f56cccb2d3 100644 (file)
@@ -81,7 +81,7 @@ else
     syn match  yamlEscape contained '\\\%([\\"abefnrtv\^0_ NLP\n]\|x\x\x\|u\x\{4}\|U\x\{8}\)'
     syn match  yamlSingleEscape contained "''"
     syn match yamlComment /#.*/ contained
-    " A second colon is a syntax error, unles within a string or following !expr
+    " A second colon is a syntax error, unless within a string or following !expr
     syn match yamlColonError /:\s*[^'^"^!]*:/ contained
     if &filetype == 'quarto'
       syn region pandocYAMLHeader matchgroup=rmdYamlBlockDelim start=/\%(\%^\|\_^\s*\n\)\@<=\_^-\{3}\ze\n.\+/ end=/^---$/ keepend contains=rmdYamlFieldTtl,yamlFlowString,yamlComment,yamlColonError
index 00d58d11f2a2e271cb247331cd91cf83628a939d..ed8fa8cf12c38940a307ff0cc69f2d17e8a1deb8 100644 (file)
@@ -294,7 +294,7 @@ syn sync minlines=100
 hi def link sgmlTodo                   Todo
 hi def link sgmlTag                    Function
 hi def link sgmlEndTag                 Identifier
-" SGML specifig
+" SGML specific
 hi def link sgmlAbbrEndTag             Identifier
 hi def link sgmlEmptyTag               Function
 hi def link sgmlEntity                 Statement
index cf0734ae855685fe1939f4ee99ab32bc2ad74f78..004bdd1bb117da2769a66c9265c92a3ce8ea34de 100644 (file)
@@ -94,7 +94,7 @@ syn region  slrnrcColorObjStr contained matchgroup=slrnrcColorObj start=+"+ end=
 syn keyword slrnrcColorVal     contained default
 syn keyword slrnrcColorVal     contained black blue brightblue brightcyan brightgreen brightmagenta brightred brown cyan gray green lightgray magenta red white yellow
 syn region  slrnrcColorValStr  contained matchgroup=slrnrcColorVal start=+"+ end=+"+ oneline contains=slrnrcColorVal,slrnrcSpaceError
-" Mathcing a function with three arguments
+" Matching a function with three arguments
 syn keyword slrnrcColor                contained color
 syn match   slrnrcColorInit    contained "^\s*color\s\+\S\+" skipwhite nextgroup=slrnrcColorVal\(Str\)\= contains=slrnrcColor\(Obj\|ObjStr\)\=
 syn match   slrnrcColorLine    "^\s*color\s\+\S\+\s\+\S\+" skipwhite nextgroup=slrnrcColorVal\(Str\)\= contains=slrnrcColor\(Init\|Val\|ValStr\)
index d7d587794385e79f129a6300afc6576ea714f8ed..aed04bc9008da13b82b69d21399f72bb58547b01 100644 (file)
@@ -56,7 +56,7 @@ syn match specListedFilesEtc    contained '/etc/'me=e-1
 syn match specListedFilesShare  contained '/share/'me=e-1
 syn cluster specListedFiles contains=specListedFilesBin,specListedFilesLib,specListedFilesDoc,specListedFilesEtc,specListedFilesShare,specListedFilesPrefix,specVariables,specSpecialChar
 
-"specComands
+"specCommands
 syn match   specConfigure  contained '\./configure'
 syn match   specTarCommand contained '\<tar\s\+[cxvpzIf]\{,5}\s*'
 syn keyword specCommandSpecial contained root
@@ -87,7 +87,7 @@ syn region specSectionMacroBracketArea oneline matchgroup=specSectionMacro start
 "TODO %config valid parameters: missingok\|noreplace
 "TODO %verify valid parameters: \(not\)\= \(md5\|atime\|...\)
 syn region specFilesArea matchgroup=specSection start='^%[Ff][Ii][Ll][Ee][Ss]\>' skip='%\(attrib\|defattr\|attr\|dir\|config\|docdir\|doc\|lang\|license\|verify\|ghost\|exclude\)\>' end='^%[a-zA-Z]'me=e-2 contains=specFilesOpts,specFilesDirective,@specListedFiles,specComment,specCommandSpecial,specMacroIdentifier
-"tip: remember to include new itens in specFilesArea above
+"tip: remember to include new items in specFilesArea above
 syn match  specFilesDirective contained '%\(attrib\|defattr\|attr\|dir\|config\|docdir\|doc\|lang\|license\|verify\|ghost\|exclude\)\>'
 
 "valid options for certain section headers
index e01912bc4001f9a21bcb488d313d8c05921f0ae0..71418c556fc2db5fe8d4e4de8ff2fdc497be83b2 100644 (file)
@@ -162,7 +162,7 @@ hi def link sqlNumber       Number
 hi def link sqlBoolean Boolean
 hi def link sqlString  String
 
-" === Statment syntax group ===
+" === Statement syntax group ===
 hi def link sqlStatement       Statement
 hi def link sqlConditional     Conditional
 hi def link sqlRepeat          Repeat
index c901145c3c5488eaf66e308fc6e63cabacc0a4e5..fd0f8f3d7674da824b49f513a8df91497857ebb6 100644 (file)
@@ -16,7 +16,7 @@ endif
 " Read the Java syntax to start with
 source <sfile>:p:h/java.vim
 
-" SQLJ extentions
+" SQLJ extensions
 " The SQL reserved words, defined as keywords.
 
 syn case ignore
index a8abd180a0f6bd93619e902a2f9ba709ba4bb176..186be91e61978ad0012b2aa6359d933df50158ed 100644 (file)
@@ -31,7 +31,7 @@ syn keyword   squidConf       cache_effective_user cache_host cache_host_acl
 syn keyword    squidConf       cache_host_domain cache_log cache_mem
 syn keyword    squidConf       cache_mem_high cache_mem_low cache_mgr
 syn keyword    squidConf       cachemgr_passwd cache_peer cache_peer_access
-syn keyword    squidConf       cahce_replacement_policy cache_stoplist
+syn keyword    squidConf       cache_replacement_policy cache_stoplist
 syn keyword    squidConf       cache_stoplist_pattern cache_store_log cache_swap
 syn keyword    squidConf       cache_swap_high cache_swap_log cache_swap_low
 syn keyword    squidConf       client_db client_lifetime client_netmask
index 1d6e570752d443558407d5102786f14d3a5d3471..b8b5e6992bca8fbd8a5be3bcde9e9a455887a72c 100644 (file)
@@ -1,6 +1,6 @@
 " Vim syntax file
 " Language: TASM: turbo assembler by Borland
-" Maintaner: FooLman of United Force <foolman@bigfoot.com>
+" Maintainer: FooLman of United Force <foolman@bigfoot.com>
 " Last Change: 2012 Feb 03 by Thilo Six, and 2018 Nov 27.
 
 " quit when a syntax file was already loaded
index 47775b8637d8cee22f1ace3ecce1920275771996..df6adcf81960b899e4e1a54d6d221d45f9d09640 100644 (file)
@@ -27,7 +27,7 @@ syn keyword tfVar  bamf bg_output borg clearfull cleardone clock connect  contai
 syn keyword tfVar  emulation end_color gag gethostbyname gpri hook hilite  contained
 syn keyword tfVar  hiliteattr histsize hpri insert isize istrip kecho  contained
 syn keyword tfVar  kprefix login lp lpquote maildelay matching max_iter  contained
-syn keyword tfVar  max_recur mecho more mprefix oldslash promt_sec  contained
+syn keyword tfVar  max_recur mecho more mprefix oldslash prompt_sec  contained
 syn keyword tfVar  prompt_usec proxy_host proxy_port ptime qecho qprefix  contained
 syn keyword tfVar  quite quitdone redef refreshtime scroll shpause snarf sockmload  contained
 syn keyword tfVar  start_color tabsize telopt sub time_format visual  contained
index 8dd2a24df9d118d77c4d7354d578577025255119..6f74ad2eb3a67b24bc6a4e405d4043c659a4df9e 100644 (file)
@@ -83,11 +83,11 @@ syn keyword tsaltFunction   vGetChrs vGetChrsA  vPutChr vPutChrs
 syn keyword tsaltFunction      vPutChrsA vRstrArea vSaveArea
 
 " Dynamic Data Exchange (DDE) Operations
-syn keyword tsaltFunction      DDEExecute DDEInitate DDEPoke DDERequest
+syn keyword tsaltFunction      DDEExecute DDEInitiate DDEPoke DDERequest
 syn keyword tsaltFunction      DDETerminate DDETerminateAll
 "END FUNCTIONS
 
-"PREDEFINED VARAIABLES
+"PREDEFINED VARIABLES
 syn keyword tsaltSysVar        _add_lf _alarm_on _answerback_str _asc_rcrtrans
 syn keyword tsaltSysVar        _asc_remabort _asc_rlftrans _asc_scpacing
 syn keyword tsaltSysVar        _asc_scrtrans _asc_secho _asc_slpacing
@@ -106,7 +106,7 @@ syn keyword tsaltSysVar     _scr_chk_key _script_dir _sound_on
 syn keyword tsaltSysVar        _strip_high _swap_bs _telix_dir _up_dir
 syn keyword tsaltSysVar        _usage_fname _zmodauto _zmod_rcrash
 syn keyword tsaltSysVar        _zmod_scrash
-"END PREDEFINED VARAIABLES
+"END PREDEFINED VARIABLES
 
 "TYPE
 syn keyword tsaltType  str int