-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Ada xfuncname and wordRegex patterns to the list of builtin patterns. Signed-off-by: Adrian Johnson <ajohnson@redneon.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
- Loading branch information
Adrian Johnson
authored and
Junio C Hamano
committed
Sep 17, 2012
1 parent
889d358
commit e90d065
Showing
7 changed files
with
66 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<BOLD>diff --git a/pre b/post<RESET> | ||
<BOLD>index d96fdd1..df21bb0 100644<RESET> | ||
<BOLD>--- a/pre<RESET> | ||
<BOLD>+++ b/post<RESET> | ||
<CYAN>@@ -1,13 +1,13 @@<RESET> | ||
Ada.Text_IO.Put_Line("Hello World<RED>!<RESET><GREEN>?<RESET>"); | ||
1 1e<RED>-<RESET>10 16#FE12#E2 3.141_592 '<RED>x<RESET><GREEN>y<RESET>' | ||
<RED>a<RESET><GREEN>x<RESET>+<RED>b a<RESET><GREEN>y x<RESET>-<RED>b<RESET> | ||
<RED>a<RESET><GREEN>y<RESET> | ||
<GREEN>x<RESET>*<RED>b a<RESET><GREEN>y x<RESET>/<RED>b<RESET> | ||
<RED>a<RESET><GREEN>y<RESET> | ||
<GREEN>x<RESET>**<RED>b<RESET> | ||
<RED>a<RESET><GREEN>y<RESET> | ||
<GREEN>x<RESET>(<RED>b<RESET><GREEN>y<RESET>) | ||
<RED>a<RESET><GREEN>x<RESET>:=<RED>b<RESET> | ||
<RED>a<RESET><GREEN>y<RESET> | ||
<GREEN>x<RESET>=<RED>b a<RESET><GREEN>y x<RESET>/= <RED>b<RESET> | ||
<RED>a<RESET><GREEN>y<RESET> | ||
<GREEN>x<RESET><<RED>b a<RESET><GREEN>y x<RESET><=<RED>b a<RESET><GREEN>y x<RESET>><RED>b a<RESET><GREEN>y x<RESET>>=<RED>b<RESET> | ||
<RED>a<RESET><GREEN>y<RESET> | ||
<GREEN>x<RESET>,<RED>b<RESET> | ||
<RED>a<RESET><GREEN>y<RESET> | ||
<GREEN>x<RESET>=><RED>b<RESET> | ||
<RED>a<RESET><GREEN>y<RESET> | ||
<GREEN>x<RESET>..<RED>b<RESET> | ||
<RED>a<RESET><GREEN>y<RESET> | ||
<GREEN>x<RESET><><RED>b<RESET><GREEN>y<RESET> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Ada.Text_IO.Put_Line("Hello World?"); | ||
1 1e10 16#FE12#E2 3.141_592 'y' | ||
x+y x-y | ||
x*y x/y | ||
x**y | ||
x(y) | ||
x:=y | ||
x=y x/= y | ||
x<y x<=y x>y x>=y | ||
x,y | ||
x=>y | ||
x..y | ||
x<>y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Ada.Text_IO.Put_Line("Hello World!"); | ||
1 1e-10 16#FE12#E2 3.141_592 'x' | ||
a+b a-b | ||
a*b a/b | ||
a**b | ||
a(b) | ||
a:=b | ||
a=b a/= b | ||
a<b a<=b a>b a>=b | ||
a,b | ||
a=>b | ||
a..b | ||
a<>b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters