Recent activity

Re: [PATCH hautils] pwd: Do not reassign mode on pwd -L 3 months ago

From Noah Altunian to ~sircmpwn/hare-dev

This makes sense. Thank you for the clarification.

[PATCH hautils] pwd: Do not reassign mode on pwd -L 3 months ago

From Noah Altunian to ~sircmpwn/hare-dev

When ./pwd -L is invoked, mode is reassigned to mode::NORM, which
is the default value. In this case we can simply use 'void'.
---
 pwd.ha | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pwd.ha b/pwd.ha
index bf095f4..2643629 100644
--- a/pwd.ha
+++ b/pwd.ha
@@ -26,7 +26,7 @@ export fn utilmain() (main::error | void) = {
		const opt = cmd.opts[i];
		switch (opt.0) {
		case 'L' =>
[message trimmed]

Re: [PATCH hare] haredoc: update man page wording to be more clear 4 months ago

From Noah Altunian to ~sircmpwn/hare-dev

When I read `indents', I read it as `tabs'. If `indents' is correct, please disregard.

Noah

[PATCH hare] haredoc: update man page wording to be more clear 4 months ago

From Noah Altunian to ~sircmpwn/hare-dev

Signed-off-by: Noah Altunian <noah@altun.cc>
---
 docs/haredoc.scd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/haredoc.scd b/docs/haredoc.scd
index 9269a317..84bb6759 100644
--- a/docs/haredoc.scd
+++ b/docs/haredoc.scd
@@ -42,7 +42,7 @@ whitespace will be collapsed. To begin a new paragraph, insert an empty line.
Links to Hare symbols may be written in brackets, like this: [[os::stdout]]. A
bulleted list can be started by opening a line with "-". To complete the list,
insert an empty line. Code samples may be used by using more than one space
character at the start of a line (a tab character counts as 8 indents).
[message trimmed]

[PATCH v2] Demonstrate that I can use git send-email 4 months ago

From Noah Altunian to ~sircmpwn/email-test-drive

---
 naltun | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 naltun

diff --git a/naltun b/naltun
new file mode 100644
index 0000000..66cb3d4
--- /dev/null
+++ b/naltun
@@ -0,0 +1 @@
I have successfully used git send-email!
-- 
2.34.1
[message trimmed]

[PATCH] Demonstrate that I can use git send-email 4 months ago

From Noah Altunian to ~sircmpwn/email-test-drive

---
 naltun | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 naltun

diff --git a/naltun b/naltun
new file mode 100644
index 0000000..6d0ecfd
--- /dev/null
+++ b/naltun
@@ -0,0 +1 @@
I'm about to try git send-email
-- 
2.34.1
[message trimmed]

How to import a C header file and call a function? 2 years ago

From n altun to ~sircmpwn/hare-users

I have a C header file, `foo.h'. Inside is a function
`void bar(int i)'.

What is the idiomatic way to import this file and call the function?
What I expect:

use fmt;

include "foo.h"

export fn main() void = {
        let i: int = 4;
        bar(i);
};

[PATCH] errors: Fix misspelling in code comment 2 years ago

From Noah Altunian to ~sircmpwn/hare-dev

Signed-off-by: Noah Altunian <nbaltunian@gmail.com>
---
 errors/common.ha | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/errors/common.ha b/errors/common.ha
index 61332e3..4911c9e 100644
--- a/errors/common.ha
+++ b/errors/common.ha
@@ -4,7 +4,7 @@ export type busy = !void;
// An attempt was made to create a resource which already exists.
export type exists = !void;

// An function was called with an invalid combination of arguments.
[message trimmed]

[PATCH v2] Demonstrate that I can use git send-email 2 years ago

From Noah Altunian to ~sircmpwn/email-test-drive

Signed-off-by: Noah Altunian <nbaltunian@gmail.com>
---
I applied the feedback Drew.

 naltun | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 naltun

diff --git a/naltun b/naltun
new file mode 100644
index 0000000..66cb3d4
--- /dev/null
+++ b/naltun
@@ -0,0 +1 @@
[message trimmed]

[PATCH] Demonstrate that I can use git send-email 2 years ago

From Noah Altunian to ~sircmpwn/email-test-drive

Signed-off-by: Noah Altunian <nbaltunian@gmail.com>
---
 naltun | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 naltun

diff --git a/naltun b/naltun
new file mode 100644
index 0000000..6d0ecfd
--- /dev/null
+++ b/naltun
@@ -0,0 +1 @@
I'm about to try git send-email
--
[message trimmed]