• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r4wp

[!REBOL3] General discussion about REBOL 3

MarcS
10-Mar-2013
[1652]
(As you might have gathered, I'm not much of a Githubber)
Andreas
10-Mar-2013
[1653]
For NONE I see the following options to fix the crash right away: 
either remove the NONE feature altogether (removing functionality 
that currently sometimes works on Win32), or use http:// on POSIX 
(as a not totally reliable workaround), or move the early exit to 
the POSIX specific code (creating a cross-platform incompatibility 
between Win32 and POSIX platforms).
MarcS
10-Mar-2013
[1654x2]
Re: Haiku, http://code.metager.de/source/xref/haiku/headers/posix/unistd.h#212
Anyway, the subtree is named 'posix' :)
Andreas
10-Mar-2013
[1656]
Good, thanks for looking that up. I can try building on Haiku later 
on.
MarcS
10-Mar-2013
[1657x2]
Great
Git question: can I ignore changes to makefile without modifying 
.gitignore?
Andreas
10-Mar-2013
[1659]
With how the repository is currently set up: I don't know of a way 
how to do that. Just don't add the makefile changes before you commit.
MarcS
10-Mar-2013
[1660x3]
Sure, I'm not staging them.
I seem to recall that there's a global ignore setting
(Which I'd likely be abusing, but might be suitable.)
Andreas
10-Mar-2013
[1663x2]
I don't think that comes into play with files already present in 
the repo.
.git/info/exclude is a per-repository ignore list.
MarcS
10-Mar-2013
[1665x2]
Aha, thanks
Just found that https://help.github.com/articles/ignoring-fileshere
Andreas
10-Mar-2013
[1667]
Cool. So --assume-unchanged helps :)

git update-index --assume-unchanged make/makefile
MarcS
10-Mar-2013
[1668x2]
Oh good stuff -- the exclude list doesn't
Since already committed
Andreas
10-Mar-2013
[1670]
Hopefully one remembers having marked a file with --assume-unchanged 
when actually _trying_ to stage changes from that file :)
MarcS
10-Mar-2013
[1671x5]
$ git ls-files -v | grep "^[a-z]"
h make/makefile
aha, http://durdn.com/blog/2012/11/22/must-have-git-aliases-advanced-examples/
nice aliases
including unasumeall
This SO chat seems quite nice, perhaps I should sign up. The interleaving 
of CureCode and Github feeds works well.
Andreas
10-Mar-2013
[1676]
That's pretty nice, yes :)
MarcS
10-Mar-2013
[1677x2]
Incidentally, nice to (re)meet you.
(Pretty sure we chatted on here about 6 months ago.)
Andreas
10-Mar-2013
[1679]
Quite possible :) Nice to (re)meet you to.
BrianH
10-Mar-2013
[1680]
Andreas, I have an interesting Git problem related to R3 and the 
new version of VS2012. Git both in Github and now in VS are both 
detecting a couple files in the build directory you helped me make 
as having changed or being new. I thought that whole directory was 
ignored in .gitignore, so it seems weird.
Andreas
10-Mar-2013
[1681]
build/ should be ignored, yes. (Let's move to "Git" or to private 
chat for that.)
MarcS
10-Mar-2013
[1682x2]
For anyone following the browse stuff, I rebased as Andreas suggested 
-- while the above changesets/commits are still accessible, the new 
ones are listed in the pull request.
(Split in two)
DideC
11-Mar-2013
[1684]
In CC #1990 http://issue.cc/r3/1990
I think there a typo in the example :

	>> reword/escape "!bang;bang;" [bang "!"] ["!" ";"]
	== "!blah;"  ; One-pass, continues after the replacement
BrianH
11-Mar-2013
[1685]
Thanks, I'll fix that. Originally it was HTML entities, but something 
about CC's update process converts those entities to their original 
characters, which corrupted the code examples. I started using blah 
before I switched to bang.
Ladislav
11-Mar-2013
[1686]
This is something that surprises me:

system/version ; == 2.100.111.3.1
for i 1 2 0 [prin "x"] ; == none (I am OK with this)

for i 2 1 0 [prin "x"] ; xxxx..... (this does not look compatible 
with the above)
BrianH
11-Mar-2013
[1687x2]
Yeah, that looks like a bug. Write a ticket?
And a step of 0 makes it not run and return none, instead of triggering 
an error? Is that right?
Ladislav
11-Mar-2013
[1689x2]
Yes, but I do not object against that (no problem with me)
Does somebody have other preferences?
BrianH
11-Mar-2013
[1691x2]
I'm OK with that, since the alternative is either an endless loop 
or conditional code to avoid error trapping. But it needs to make 
sense conceptually.
Oh, and please don't be bug-for-bug compatible in your R2 version. 
If you find bugs in R3's version, let's report and fix them, now's 
the time :)
Ladislav
11-Mar-2013
[1693]
Another test:

for i 1 1 0 [prin "x"] ; xxxx.....
BrianH
11-Mar-2013
[1694]
If we define the FOR function with a special-case that a step of 
0 will definitely not make the loop run, and have the function return 
none, that makes for some simple tests to add to rebol-tests. Just 
have it break/return something other than none in the code block. 
Like this:
[none? for i 1 1 0 [break/return 1]]
[none? for i 1 2 0 [break/return 1]]
[none? for i 2 1 0 [break/return 1]]
... maybe.
Ladislav
11-Mar-2013
[1695x2]
Yes, I am OK with that
none? for i 1 1 0 [break]

looks sufficient as well
BrianH
11-Mar-2013
[1697x3]
Good.
FOREACH triggers an error in that case, the case of the empty word 
block.
Should we be consistent?
Gregg
11-Mar-2013
[1700x2]
I thoguht I did a FOR compatible wrapper for CFOR at one time, but 
I can't find it right now.
Is that along the lines of what you're thinking Ladislav?