Haskell.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

ghc-tickets

Thread Start a new thread
Download
Threads by month
  • ----- 2025 -----
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2013 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
ghc-tickets@haskell.org

September 2013

  • 3 participants
  • 648 discussions
[GHC] #8193: document :kind! in ghci built-in help
by GHC 03 Sep '13

03 Sep '13
#8193: document :kind! in ghci built-in help ------------------------------------+-------------------------------------- Reporter: rwbarton | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.4.2 Keywords: | Operating System: Unknown/Multiple Architecture: Unknown/Multiple | Type of failure: Documentation bug Difficulty: Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | ------------------------------------+-------------------------------------- Patch attached. I have the wording as: {{{ :kind[!] <type> show the kind of <type> (!: also show the normalised type) }}} could use some tweaking perhaps. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/8193> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 5
0 0
Re: [GHC] #4983: Warning about redundant import is wrong when hiding identifiers in order to avoid export ambiguities
by GHC 03 Sep '13

03 Sep '13
#4983: Warning about redundant import is wrong when hiding identifiers in order to avoid export ambiguities -------------------------------------------------+------------------------- Reporter: Lemming | Owner: Type: bug | Status: Priority: normal | closed Component: Compiler | Milestone: Resolution: wontfix | Version: 7.0.1 Operating System: Unknown/Multiple | Keywords: Type of failure: Incorrect warning at | Architecture: compile-time | Unknown/Multiple Test Case: | Difficulty: Blocking: | Unknown | Blocked By: | Related Tickets: -------------------------------------------------+------------------------- Comment (by hvr): Curiously, GHC 7.0.4 warns, GHC 7.4.3 doesn't warn, but current GHC HEAD emits the warning again. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/4983#comment:6> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #4983: Warning about redundant import is wrong when hiding identifiers in order to avoid export ambiguities
by GHC 03 Sep '13

03 Sep '13
#4983: Warning about redundant import is wrong when hiding identifiers in order to avoid export ambiguities -------------------------------------------------+------------------------- Reporter: Lemming | Owner: Type: bug | Status: Priority: normal | closed Component: Compiler | Milestone: Resolution: wontfix | Version: 7.0.1 Operating System: Unknown/Multiple | Keywords: Type of failure: Incorrect warning at | Architecture: compile-time | Unknown/Multiple Test Case: | Difficulty: Blocking: | Unknown | Blocked By: | Related Tickets: -------------------------------------------------+------------------------- Changes (by tibbe): * difficulty: => Unknown Comment: This problem popped up in the containers package which quite reasonably does: {{{ module Data.IntMap (fold) where import Data.IntMap.Base -- exports foldr import Prelude hiding (foldr) fold = foldr }}} This means that GHC HEAD doesn't validate against containers anymore. We can work around the issue, but GHC is to blame here. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/4983#comment:5> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #7918: SrcSpan's associated with expanded quasi-quotes are inconsistent
by GHC 03 Sep '13

03 Sep '13
#7918: SrcSpan's associated with expanded quasi-quotes are inconsistent -----------------------------------------+--------------------------------- Reporter: edsko | Owner: edsko Type: bug | Status: closed Priority: high | Milestone: 7.8.1 Component: Compiler | Version: 7.7 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: None/Unknown | Unknown/Multiple Test Case: quasiquotation/T7918 | Difficulty: Unknown Blocking: | Blocked By: | Related Tickets: -----------------------------------------+--------------------------------- Changes (by edsko): * status: new => closed * resolution: => fixed Comment: Ok, implemented as discussed above for expressions, types and patterns; for declarations the locations as returned by the quasi-quoter were respected. The test case verifies the locations to guard against future regressions. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/7918#comment:16> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #7918: SrcSpan's associated with expanded quasi-quotes are inconsistent
by GHC 03 Sep '13

03 Sep '13
#7918: SrcSpan's associated with expanded quasi-quotes are inconsistent -----------------------------------------+--------------------------------- Reporter: edsko | Owner: edsko Type: bug | Status: new Priority: high | Milestone: 7.8.1 Component: Compiler | Version: 7.7 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: None/Unknown | Unknown/Multiple Test Case: quasiquotation/T7918 | Difficulty: Unknown Blocking: | Blocked By: | Related Tickets: -----------------------------------------+--------------------------------- Comment (by Edsko de Vries <edsko@…>): In [changeset:be7f10bb9486462247edb6aae9a3e5f46cfe4908/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="be7f10bb9486462247edb6aae9a3e5f46cfe4908" Fix #7918 }}} -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/7918#comment:15> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #3373: GHC API is not thread safe
by GHC 03 Sep '13

03 Sep '13
#3373: GHC API is not thread safe -------------------------------------+------------------------------------ Reporter: jcpetruzza | Owner: Type: feature request | Status: new Priority: low | Milestone: 7.10.1 Component: GHC API | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Difficulty: Unknown Test Case: | Blocked By: Blocking: | Related Tickets: -------------------------------------+------------------------------------ Changes (by fryguybob): * cc: fryguybob@… (added) -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/3373#comment:8> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #3103: Compiling base with cabal fails.
by GHC 03 Sep '13

03 Sep '13
#3103: Compiling base with cabal fails. -------------------------------------+------------------------------------ Reporter: Lemmih | Owner: Type: bug | Status: new Priority: high | Milestone: 7.8.1 Component: Compiler | Version: 6.10.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Difficulty: Unknown Test Case: T3103 | Blocked By: Blocking: | Related Tickets: -------------------------------------+------------------------------------ Comment (by nh2): I managed to compile base 4.7 with cabal 1.17. I got {{{ cabal: thread blocked indefinitely in an MVar operation }}} probably in the preprocessing step, but apart from that, it seems to work (see attached output file). -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/3103#comment:17> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #7918: SrcSpan's associated with expanded quasi-quotes are inconsistent
by GHC 03 Sep '13

03 Sep '13
#7918: SrcSpan's associated with expanded quasi-quotes are inconsistent -----------------------------------------+--------------------------------- Reporter: edsko | Owner: edsko Type: bug | Status: new Priority: high | Milestone: 7.8.1 Component: Compiler | Version: 7.7 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: None/Unknown | Unknown/Multiple Test Case: quasiquotation/T7918 | Difficulty: Unknown Blocking: | Blocked By: | Related Tickets: -----------------------------------------+--------------------------------- Comment (by simonpj): Yes, I think I prefer the `HsPar` approach. Moreover, if we were to display the output of the renamer then this program {{{ f x = g [qq| ...blah... |] x }}} would display, after renaming, as {{{ f x = g (...expanded quote...) x }}} where the parens are actively helpful in parsing! Let's do that. Thanks. Simon -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/7918#comment:14> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #3373: GHC API is not thread safe
by GHC 03 Sep '13

03 Sep '13
#3373: GHC API is not thread safe -------------------------------------+------------------------------------ Reporter: jcpetruzza | Owner: Type: feature request | Status: new Priority: low | Milestone: 7.10.1 Component: GHC API | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Difficulty: Unknown Test Case: | Blocked By: Blocking: | Related Tickets: -------------------------------------+------------------------------------ Changes (by byorgey): * cc: byorgey@… (added) * failure: => None/Unknown * milestone: 7.6.2 => 7.10.1 Comment: How hard would this be to fix? Any estimates of the amount of work involved? -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/3373#comment:7> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #7918: SrcSpan's associated with expanded quasi-quotes are inconsistent
by GHC 03 Sep '13

03 Sep '13
#7918: SrcSpan's associated with expanded quasi-quotes are inconsistent -----------------------------------------+--------------------------------- Reporter: edsko | Owner: edsko Type: bug | Status: new Priority: high | Milestone: 7.8.1 Component: Compiler | Version: 7.7 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: None/Unknown | Unknown/Multiple Test Case: quasiquotation/T7918 | Difficulty: Unknown Blocking: | Blocked By: | Related Tickets: -----------------------------------------+--------------------------------- Comment (by edsko): Ok, tried this for both expressions and types and I think it works, and no regression tests break. Will try it for patterns too (and perhaps declarations -- not sure yet what the story is there) and commit. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/7918#comment:13> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • Older →

HyperKitty Powered by HyperKitty version 1.3.9.