sam.halliday
2020-3-24 09:37:24

hmm, that’s not ideal but certainly better than assembly code packaged up as a .txt


sam.halliday
2020-3-24 09:40:48

what is a .ss file?


sam.halliday
2020-3-24 09:41:00

is that for a generic Scheme impl?


soegaard2
2020-3-24 09:41:12

Old abbreviation for “Scheme source”.


sam.halliday
2020-3-24 09:41:21

ah. Guile uses .sc


sam.halliday
2020-3-24 09:42:03

or is it .sm :thinking_face:


soegaard2
2020-3-24 09:42:03

I think .scm is the most common?


sam.halliday
2020-3-24 15:10:32

is there a way to get hold of a PDF version of The Racket Guide?


sam.halliday
2020-3-24 15:11:29

#lang scribble/doc is some doc format I’ve never heard of before, so I’d struggle to compile that




greg
2020-3-24 18:26:36

I want to make a super simple PR that fixes drracket/check-syntax to give make-traversal a directory not a full pathname (i.e. /path/to not /path/to/file.rkt). That is a two-line change. At the same time, Emacs is highlighting a dozen more lines with gratuitous whitespace. I can toggle that off, or, I can M-x cleanup-whitespace. Should I: 1. Do one commit with only the substantive two lines changed, leaving the extra whitespace? 2. Do one commit changing it all? 3. Do two commits, one for the substantive change, the other for the whitespace?


greg
2020-3-24 18:28:08

I guess I’ll do 3, on the theory that whoever merges it can choose to use just one commit, squash them, or whatever.


samth
2020-3-24 18:28:43

@greg I think @robby prefers not to change only whitespace because it makes blame easier to track


samth
2020-3-24 18:28:53

(that is, 1)


greg
2020-3-24 19:11:59

Dang and I was so excited to have my commit message be: I have deleted the whitespace that was in the source code and which you were probably saving ....


matias
2020-3-24 19:12:21

giggles


matias
2020-3-24 19:14:15

I’m interested in trying to make a language that uses honu’s reader and parser, but nothing else. Does anyone know of useful examples or docs that might help speed up the process?


robby
2020-3-24 19:53:02

Didn’t read everything, but at least separate out the whitespace edits into their own commit if you want to do them. Only necessary on the code that I read the history a lot and if you guess wrong on what code that is, I’ll deal! :slightly_smiling_face:


robby
2020-3-24 23:41:05

Oh, looks like I may have committed too soon, @greg!