]> Cypherpunks repositories - gostls13.git/commitdiff
misc/notepadplus: add missing delete keyword
authorChaiShushan <chaishushan@gmail.com>
Mon, 24 Jun 2013 03:28:10 +0000 (13:28 +1000)
committerAndrew Gerrand <adg@golang.org>
Mon, 24 Jun 2013 03:28:10 +0000 (13:28 +1000)
In general the description should describe what is added or fixed, not how it was done (the code does this), but in this case the cause was delete was missing, so the fix is to add it.

Fixes #5759.

R=adg
CC=dave, dominik.honnef, gobot, golang-dev
https://golang.org/cl/10476043

misc/notepadplus/go.xml
misc/notepadplus/userDefineLang.xml

index 237ef6b4b2998d92b10b33fcfb03010c32d10628..29031be0ea822a3ee4ec787b735e2008c6cf9095 100644 (file)
@@ -17,6 +17,7 @@
                <KeyWord name="copy" />
                <KeyWord name="default" /> 
                <KeyWord name="defer" /> 
+               <KeyWord name="delete" /> 
                <KeyWord name="else" />
                <KeyWord name="error" />
                <KeyWord name="fallthrough" /> 
index 2954aad48806e39aaf0bdc9d256234f2ef7a784e..a3312965eeda08d59a696ba4a602be59f73fafcb 100644 (file)
@@ -11,7 +11,7 @@
             <Keywords name="Folder-"></Keywords>
             <Keywords name="Operators">( ) [ ] { } ... . , _ &amp; ^ %  &gt; &lt; ! = + - *  | :</Keywords>
             <Keywords name="Comment"> 1/* 2*/ 0//</Keywords>
-            <Keywords name="Words1">append bool break byte cap case chan close complex complex128 complex64 const continue copy default defer else error fallthrough false float32 float64 for func go goto if iota imag import int int16 int32 int64 int8 interface len make map new nil package panic print println range real recover return rune select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var</Keywords>
+            <Keywords name="Words1">append bool break byte cap case chan close complex complex128 complex64 const continue copy default defer delete else error fallthrough false float32 float64 for func go goto if iota imag import int int16 int32 int64 int8 interface len make map new nil package panic print println range real recover return rune select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var</Keywords>
             <Keywords name="Words2"></Keywords>
             <Keywords name="Words3"></Keywords>
             <Keywords name="Words4"></Keywords>