summaryrefslogtreecommitdiff
path: root/misc/notepadplus
diff options
context:
space:
mode:
authorChaiShushan <chaishushan@gmail.com>2013-06-24 13:28:10 +1000
committerChaiShushan <chaishushan@gmail.com>2013-06-24 13:28:10 +1000
commite2b2a570af7907e31b1b1d6a9396a9d42b76d87b (patch)
treede66764e8b4a0ad1f60eb1942ad82a3981904828 /misc/notepadplus
parent67e310569d0c7998a8c3103f167ffbf5e1a4e43f (diff)
downloadgo-e2b2a570af7907e31b1b1d6a9396a9d42b76d87b.tar.gz
misc/notepadplus: add missing delete keyword
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 issue 5759. R=adg CC=dave, dominik.honnef, gobot, golang-dev https://codereview.appspot.com/10476043 Committer: Andrew Gerrand <adg@golang.org>
Diffstat (limited to 'misc/notepadplus')
-rw-r--r--misc/notepadplus/go.xml1
-rw-r--r--misc/notepadplus/userDefineLang.xml2
2 files changed, 2 insertions, 1 deletions
diff --git a/misc/notepadplus/go.xml b/misc/notepadplus/go.xml
index 237ef6b4b..29031be0e 100644
--- a/misc/notepadplus/go.xml
+++ b/misc/notepadplus/go.xml
@@ -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" />
diff --git a/misc/notepadplus/userDefineLang.xml b/misc/notepadplus/userDefineLang.xml
index 2954aad48..a3312965e 100644
--- a/misc/notepadplus/userDefineLang.xml
+++ b/misc/notepadplus/userDefineLang.xml
@@ -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>