mirror of
https://git.freebsd.org/ports.git
synced 2025-07-13 23:39:20 -04:00
- Fix build on clang - Add MAKE_JOBS_UNSAFE - Add LICENSE - Add DOCS option - Bump PORTREVISION - Pet portlint PR: 191049 Submitted by: k@stereochro.me Reviewed by: cpm@fbsd.es, joemann@beefree.free.de, marino, riggs Final patch by: cpm@fbsd.es, riggs MFH: 2014Q3
17 lines
524 B
Text
17 lines
524 B
Text
--- ./src/Mixfix/commands.yy.orig 2014-09-03 02:51:54.000000000 +0200
|
|
+++ ./src/Mixfix/commands.yy 2014-09-03 02:53:05.000000000 +0200
|
|
@@ -23,12 +23,12 @@
|
|
/*
|
|
* Commands.
|
|
*/
|
|
-command : KW_SELECT { lexBubble(END_COMMAND, 1) }
|
|
+command : KW_SELECT { lexBubble(END_COMMAND, 1); }
|
|
endBubble
|
|
{
|
|
interpreter.setCurrentModule(lexerBubble);
|
|
}
|
|
- | KW_DUMP { lexBubble(END_COMMAND, 1) }
|
|
+ | KW_DUMP { lexBubble(END_COMMAND, 1); }
|
|
endBubble
|
|
{
|
|
if (interpreter.setCurrentModule(lexerBubble))
|