From 1e9690998dba7f8b7c658d5848663fe230b6a0e6 Mon Sep 17 00:00:00 2001 From: Don Ho Date: Tue, 13 Nov 2012 00:24:40 +0000 Subject: [PATCH] [BUG_FIXED] Fix url link style problem in php document. git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@985 f5eea248-9336-0410-98b8-ebc06183d4e3 --- PowerEditor/installer/nppSetup.nsi | 6 ++++++ PowerEditor/src/Notepad_plus.cpp | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/PowerEditor/installer/nppSetup.nsi b/PowerEditor/installer/nppSetup.nsi index 811e0223..ef6e0cb6 100644 --- a/PowerEditor/installer/nppSetup.nsi +++ b/PowerEditor/installer/nppSetup.nsi @@ -789,6 +789,9 @@ SectionGroup "Localization" localization Section /o "Arabic" arabic CopyFiles "$TEMP\nppLocalization\arabic.xml" "$INSTDIR\localization\arabic.xml" SectionEnd + Section /o "Aragonese" aragonese + CopyFiles "$TEMP\nppLocalization\aragonese.xml" "$INSTDIR\localization\aragonese.xml" + SectionEnd Section /o "Aranese" aranese CopyFiles "$TEMP\nppLocalization\aranese.xml" "$INSTDIR\localization\aranese.xml" SectionEnd @@ -1464,6 +1467,9 @@ SectionGroup un.localization Section un.arabic Delete "$INSTDIR\localization\arabic.xml" SectionEnd + Section un.aragonese + Delete "$INSTDIR\localization\aragonese.xml" + SectionEnd Section un.aranese Delete "$INSTDIR\localization\aranese.xml" SectionEnd diff --git a/PowerEditor/src/Notepad_plus.cpp b/PowerEditor/src/Notepad_plus.cpp index 5c464758..e8371647 100644 --- a/PowerEditor/src/Notepad_plus.cpp +++ b/PowerEditor/src/Notepad_plus.cpp @@ -2057,7 +2057,7 @@ void Notepad_plus::addHotSpot() LangType type = _pEditView->getCurrentBuffer()->getLangType(); - if (type == L_HTML) + if (type == L_HTML || type == L_PHP || type == L_ASP || type == L_JSP) mask = INDIC2_MASK; else if (type == L_PS) mask = 16;