aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/dump.scm
diff options
context:
space:
mode:
authorHilton Chain <hako@ultrarare.space>2024-12-12 14:00:10 +0800
committerHilton Chain <hako@ultrarare.space>2024-12-18 22:57:11 +0800
commit0e4b36f21c9a9bf0f056a41358b1407ad02fffe4 (patch)
tree64b4c9b08d817fee804996239bd0b6b6a30abc41 /gnu/installer/dump.scm
parent014fc1894f58a7ae07653af05e597343ba1eba26 (diff)
downloadguix-0e4b36f21c9a9bf0f056a41358b1407ad02fffe4.tar.gz
guix-0e4b36f21c9a9bf0f056a41358b1407ad02fffe4.zip
gnu: Add livemarks-icecat.
* gnu/packages/browser-extensions.scm (livemarks,livemarks/icecat): New variables. Change-Id: Ie13563ac62ed2d39c5b52e681c6f9351dbdab41c
Diffstat (limited to 'gnu/installer/dump.scm')
0 files changed, 0 insertions, 0 deletions
n class='msg-tooltip'>This avoids ambiguities when looking at a backtrace where the exception was actually thrown by an inferior in a very different context. * guix/inferior.scm (&inferior-exception): New condition type. (read-repl-response): Add optional 'inferior' parameter. Raise '&inferior-exception' instead of rethrowing to KEY when receiving an 'exception' message. (read-inferior-response): Pass INFERIOR to 'read-repl-response'. * tests/inferior.scm ("&inferior-exception"): New test. Ludovic Courtès 2019-09-21inferior: Propagate '&store-protocol-error' error conditions....Until now '&store-protocol-error' conditions raised in the inferior would not be correctly propagated because SRFI-35 records lack a read syntax. Reported at <https://bugs.gnu.org/37449> by Carl Dong <contact@carldong.me>. * guix/inferior.scm (port->inferior): Import (srfi srfi-34) in the inferior. (inferior-eval-with-store): Define 'error?' and 'error-message'. Wrap call to PROC in 'guard'. Check the response of INFERIOR for a 'store-protocol-error' or a 'result' tag. * tests/inferior.scm ("inferior-eval-with-store, &store-protocol-error"): New test. Ludovic Courtès