[Git][cmucl/cmucl][issue-139-set-filename-encoding-to-utf8] 2 commits: Undo unneeded indentation.
Raymond Toy pushed to branch issue-139-set-filename-encoding-to-utf8 at cmucl / cmucl Commits: 77325992 by Raymond Toy at 2023-01-10T15:47:44-08:00 Undo unneeded indentation. `#+executable` was indented one space, but that's not relevant to this change, so undo it. - - - - - 20bedbc8 by Raymond Toy at 2023-01-10T15:49:21-08:00 Actually set encoding to NIL, per comment. Not sure what happened here. - - - - - 2 changed files: - src/code/extfmts.lisp - src/code/save.lisp Changes: ===================================== src/code/extfmts.lisp ===================================== @@ -493,7 +493,7 @@ ;; encoding to NIL because we don't need any special ;; encoding to open the format files. (let* ((*print-readably* nil) - ;;(unix::*filename-encoding* nil) + (unix::*filename-encoding* nil) (*package* (find-package "STREAM")) (lisp::*enable-package-locked-errors* nil) (s (open (format nil "ext-formats:~(~A~).lisp" name) ===================================== src/code/save.lisp ===================================== @@ -202,7 +202,7 @@ (site-init "library:site-init") (print-herald t) (process-command-line t) - #+:executable + #+:executable (executable nil) (batch-mode nil) (quiet nil)) View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/5aa5c037c5086f89ca50258... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/5aa5c037c5086f89ca50258... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)