all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Another nit
@ 2022-12-10  4:11 Perry Smith
  2022-12-10  4:56 ` Yuan Fu
  2022-12-10  8:36 ` Can the tree-sitter/build-module/build.sh support Mingw64 on Windows OS Eason Huang
  0 siblings, 2 replies; 5+ messages in thread
From: Perry Smith @ 2022-12-10  4:11 UTC (permalink / raw)
  To: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 378 bytes --]

Isn’t this example wrong?  From admin/notes/tree-sitter/starter-guide

>     (match NODE-TYPE PARENT-TYPE NODE-FIELD
>            NODE-INDEX-MIN NODE-INDEX-MAX)
> 
>     => checks everything. If an argument is nil, don’t match that. Eg,
>     (match nil nil TYPE) is the same as (parent-is TYPE)

Seems like (match nil TYPE) would be the same as (parent-is TYPE)


[-- Attachment #2: Message signed with OpenPGP --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Another nit
  2022-12-10  4:11 Another nit Perry Smith
@ 2022-12-10  4:56 ` Yuan Fu
  2022-12-10  8:36 ` Can the tree-sitter/build-module/build.sh support Mingw64 on Windows OS Eason Huang
  1 sibling, 0 replies; 5+ messages in thread
From: Yuan Fu @ 2022-12-10  4:56 UTC (permalink / raw)
  To: Perry Smith; +Cc: emacs-devel



> On Dec 9, 2022, at 8:11 PM, Perry Smith <pedz@easesoftware.com> wrote:
> 
> Isn’t this example wrong?  From admin/notes/tree-sitter/starter-guide
> 
>>    (match NODE-TYPE PARENT-TYPE NODE-FIELD
>>           NODE-INDEX-MIN NODE-INDEX-MAX)
>> 
>>    => checks everything. If an argument is nil, don’t match that. Eg,
>>    (match nil nil TYPE) is the same as (parent-is TYPE)
> 
> Seems like (match nil TYPE) would be the same as (parent-is TYPE)
> 

You are right, thanks! I fixed that.

Yuan


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Can the tree-sitter/build-module/build.sh support Mingw64 on Windows OS
  2022-12-10  4:11 Another nit Perry Smith
  2022-12-10  4:56 ` Yuan Fu
@ 2022-12-10  8:36 ` Eason Huang
  2022-12-11 23:37   ` Richard Stallman
  1 sibling, 1 reply; 5+ messages in thread
From: Eason Huang @ 2022-12-10  8:36 UTC (permalink / raw)
  To: emacs-devel

Hi emacs-devel team,

Recently the script from admin/notes/tree-sitter/build-module/build.sh
only support macOS and Linux. It would be nice to support Windows system
as well.

I can confirm that we only need to use soext="dll" and it will work well
on mingw64 of msys2.

The $(uname) will return "MINGW64_NT-10.0-22000" on the mingw64.

But I am not sure how to adapt the below code to support mingw64.

from line 6 of build.sh:
```
if [ $(uname) == "Darwin" ]
then
    soext="dylib"
else
    soext="so"
fi
```

-- 
Eason Huang



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Can the tree-sitter/build-module/build.sh support Mingw64 on Windows OS
  2022-12-10  8:36 ` Can the tree-sitter/build-module/build.sh support Mingw64 on Windows OS Eason Huang
@ 2022-12-11 23:37   ` Richard Stallman
  2022-12-12 12:09     ` Eason Huang
  0 siblings, 1 reply; 5+ messages in thread
From: Richard Stallman @ 2022-12-11 23:37 UTC (permalink / raw)
  To: Eason Huang; +Cc: emacs-devel

[[[ To any NSA and FBI agents reading my email: please consider    ]]]
[[[ whether defending the US Constitution against all enemies,     ]]]
[[[ foreign or domestic, requires you to follow Snowden's example. ]]]

  > Recently the script from admin/notes/tree-sitter/build-module/build.sh
  > only support macOS and Linux.

Macos is an operating system, but Linux is just a kernel.
The operating system we give preference to is not Linux;
it is GNU+Linux, which is the GNU operating system combined
with Linux as the kernel.

See https://gnu.org/gnu/linux-and-gnu.html and
https://gnu.org/gnu/gnu-linux-faq.html, plus the history in
https://gnu.org/gnu/the-gnu-project.html.

Thanks for suggesting improvements in Emacs.
-- 
Dr Richard Stallman (https://stallman.org)
Chief GNUisance of the GNU Project (https://gnu.org)
Founder, Free Software Foundation (https://fsf.org)
Internet Hall-of-Famer (https://internethalloffame.org)





^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Can the tree-sitter/build-module/build.sh support Mingw64 on Windows OS
  2022-12-11 23:37   ` Richard Stallman
@ 2022-12-12 12:09     ` Eason Huang
  0 siblings, 0 replies; 5+ messages in thread
From: Eason Huang @ 2022-12-12 12:09 UTC (permalink / raw)
  To: Richard Stallman; +Cc: emacs-devel

Richard Stallman <rms@gnu.org> writes:

> [[[ To any NSA and FBI agents reading my email: please consider    ]]]
> [[[ whether defending the US Constitution against all enemies,     ]]]
> [[[ foreign or domestic, requires you to follow Snowden's example. ]]]
>
>   > Recently the script from admin/notes/tree-sitter/build-module/build.sh
>   > only support macOS and Linux.
>
> Macos is an operating system, but Linux is just a kernel.
> The operating system we give preference to is not Linux;
> it is GNU+Linux, which is the GNU operating system combined
> with Linux as the kernel.
>
> See https://gnu.org/gnu/linux-and-gnu.html and
> https://gnu.org/gnu/gnu-linux-faq.html, plus the history in
> https://gnu.org/gnu/the-gnu-project.html.
>
> Thanks for suggesting improvements in Emacs.

Hello Richard,

Thanks for correct me and sharing the infomation about the GNU history.
Now it clear for me, what I mean is GNU/Linux.


-- 
Eason Huang



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-12-12 12:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-10  4:11 Another nit Perry Smith
2022-12-10  4:56 ` Yuan Fu
2022-12-10  8:36 ` Can the tree-sitter/build-module/build.sh support Mingw64 on Windows OS Eason Huang
2022-12-11 23:37   ` Richard Stallman
2022-12-12 12:09     ` Eason Huang

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.