From: Junio C Hamano <gitster@pobox.com>
To: Boxuan Li <liboxuan@connect.hku.hk>
Cc: git@vger.kernel.org, avarab@gmail.com, philipoakley@iee.org
Subject: Re: [PATCH v3] userdiff.c & doc/gitattributes.txt: add Octave
Date: Wed, 15 May 2019 14:35:58 +0900 [thread overview]
Message-ID: <xmqq4l5w7001.fsf@gitster-ct.c.googlers.com> (raw)
In-Reply-To: <20190511041331.51642-1-liboxuan@connect.hku.hk> (Boxuan Li's message of "Sat, 11 May 2019 12:13:31 +0800")
Boxuan Li <liboxuan@connect.hku.hk> writes:
> Octave pattern is almost the same as matlab. Besides,
> octave also uses '%%%' or '##' to begin code sections.
My reading of the above hiccupped at around "Besides, octave also
uses...".
Checking the differences in patterns, I think
... the same as matlab, except that '%%%' and '##' can also
be used to begin code sections, in addition to '%%' that is
understood by both.
may be easier to read. It makes it clear that you'd want to stay
away from %%% and ## if you want to be compatible.
Thanks.
> Signed-off-by: Boxuan Li <liboxuan@connect.hku.hk>
> ---
> Update from v2: fix indentation
> ---
> Documentation/gitattributes.txt | 2 ++
> userdiff.c | 5 +++++
> 2 files changed, 7 insertions(+)
>
> diff --git a/Documentation/gitattributes.txt b/Documentation/gitattributes.txt
> index 4fb20cd0e9..45374c7dd3 100644
> --- a/Documentation/gitattributes.txt
> +++ b/Documentation/gitattributes.txt
> @@ -821,6 +821,8 @@ patterns are available:
>
> - `matlab` suitable for source code in the MATLAB language.
>
> +- `octave` suitable for source code in the Octave language.
> +
> - `objc` suitable for source code in the Objective-C language.
>
> - `pascal` suitable for source code in the Pascal/Delphi language.
> diff --git a/userdiff.c b/userdiff.c
> index 3a78fbf504..7d07b82116 100644
> --- a/userdiff.c
> +++ b/userdiff.c
> @@ -60,6 +60,11 @@ PATTERNS("java",
> PATTERNS("matlab",
> "^[[:space:]]*((classdef|function)[[:space:]].*)$|^%%[[:space:]].*$",
> "[a-zA-Z_][a-zA-Z0-9_]*|[-+0-9.e]+|[=~<>]=|\\.[*/\\^']|\\|\\||&&"),
> +PATTERNS("octave",
> + /* Mostly the same as matlab. In addition, Octave
> + * supports '##' and '%%%' for code sections */
> + "^[[:space:]]*((classdef|function)[[:space:]].*)$|^(%%%?|##)[[:space:]].*$",
> + "[a-zA-Z_][a-zA-Z0-9_]*|[-+0-9.e]+|[=~<>]=|\\.[*/\\^']|\\|\\||&&"),
> PATTERNS("objc",
> /* Negate C statements that can look like functions */
> "!^[ \t]*(do|for|if|else|return|switch|while)\n"
next prev parent reply other threads:[~2019-05-15 5:36 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-10 0:47 [PATCH] doc/gitattributes: add Octave Boxuan Li
2019-05-10 23:09 ` Philip Oakley
2019-05-10 23:26 ` Ævar Arnfjörð Bjarmason
2019-05-11 2:36 ` LI, BO XUAN
2019-05-11 4:08 ` [PATCH v2] userdiff.c & doc/gitattributes.txt: " Boxuan Li
2019-05-11 4:13 ` [PATCH v3] " Boxuan Li
2019-05-15 5:35 ` Junio C Hamano [this message]
2019-05-15 5:57 ` Johannes Sixt
2019-05-15 6:15 ` LI, BO XUAN
2019-05-15 17:46 ` Johannes Sixt
2019-05-16 9:19 ` Junio C Hamano
2019-05-16 19:20 ` Johannes Sixt
2019-05-16 23:33 ` Junio C Hamano
2019-05-17 12:19 ` LI, BO XUAN
2019-05-17 19:47 ` Johannes Sixt
2019-05-15 5:55 ` [PATCH v4] " Boxuan Li
2019-05-18 3:46 ` [PATCH v5] userdiff: " Boxuan Li
2019-05-20 19:26 ` Johannes Sixt
2019-05-21 14:57 ` [PATCH v6] " Boxuan Li
2019-05-28 16:37 ` [PATCH v5] " Junio C Hamano
2019-05-28 20:26 ` Johannes Sixt
2019-05-29 16:15 ` [PATCH] userdiff: fix grammar and style issues Boxuan Li
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: http://vger.kernel.org/majordomo-info.html
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=xmqq4l5w7001.fsf@gitster-ct.c.googlers.com \
--to=gitster@pobox.com \
--cc=avarab@gmail.com \
--cc=git@vger.kernel.org \
--cc=liboxuan@connect.hku.hk \
--cc=philipoakley@iee.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).