Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
clpm
clpm
Commits
0a784c1a
Commit
0a784c1a
authored
Feb 15, 2020
by
Eric Timmons
Browse files
Disable color printing on Windows
parent
ab305fc9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/clpm/context.lisp
View file @
0a784c1a
...
...
@@ -311,7 +311,8 @@ in place with the same name. Return the new requirement if it was modified."
(
format-string
(
make-diff-format-string
4
max-name-length
max-old-version-length
max-new-version-length
max-old-source-length
max-new-source-length
:use-color-p
(
interactive-stream-p
stream
)))
:use-color-p
(
and
(
not
(
featurep
:windows
))
(
interactive-stream-p
stream
))))
(
no-color-format-string
(
make-diff-format-string
4
max-name-length
max-old-version-length
max-new-version-length
max-old-source-length
max-new-source-length
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment